View Javadoc
1 /* $Id: XMLException.java,v 1.2 2003/11/21 04:44:31 pelle Exp $ 2 * $Log: XMLException.java,v $ 3 * Revision 1.2 2003/11/21 04:44:31 pelle 4 * EncryptedFileStore now works. It uses the PBECipher with DES3 afair. 5 * Otherwise You will Finaliate. 6 * Anything that can be final has been made final throughout everyting. We've used IDEA's Inspector tool to find all instance of variables that could be final. 7 * This should hopefully make everything more stable (and secure). 8 * 9 * Revision 1.1.1.1 2003/11/11 16:33:20 pelle 10 * Moved over from neudist.org 11 * Moved remaining common utilities into commons 12 * 13 * Revision 1.2 2003/10/21 22:30:33 pelle 14 * Renamed NeudistException to NeuClearException and moved it to org.neuclear.commons where it makes more sense. 15 * Unhooked the XMLException in the xmlsig library from NeuClearException to make all of its exceptions an independent hierarchy. 16 * Obviously had to perform many changes throughout the code to support these changes. 17 * 18 * Revision 1.1 2003/01/18 18:12:31 pelle 19 * First Independent commit of the Independent XML-Signature API for NeuDist. 20 * 21 * Revision 1.2 2002/09/21 23:11:16 pelle 22 * A bunch of clean ups. Got rid of as many hard coded URL's as I could. 23 * 24 */ 25 package org.neuclear.xml; 26 /*** 27 * @author pelleb 28 * @version $Revision: 1.2 $ 29 */ 30 31 import org.neuclear.commons.NeuClearException; 32 33 public class XMLException extends Exception { 34 public XMLException(final String message) { 35 super(message); 36 } 37 38 public XMLException(final Throwable t) { 39 super(t); 40 } 41 42 public XMLException(final String message, final Throwable t) { 43 super(message, t); 44 } 45 }

This page was automatically generated by Maven