View Javadoc
1 /* $Id: SOAPException.java,v 1.2 2003/11/21 04:44:30 pelle Exp $ 2 * $Log: SOAPException.java,v $ 3 * Revision 1.2 2003/11/21 04:44:30 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:23 pelle 10 * Moved over from neudist.org 11 * Moved remaining common utilities into commons 12 * 13 * Revision 1.1 2003/01/18 18:12:31 pelle 14 * First Independent commit of the Independent XML-Signature API for NeuDist. 15 * 16 * Revision 1.2 2002/09/21 23:11:16 pelle 17 * A bunch of clean ups. Got rid of as many hard coded URL's as I could. 18 * 19 */ 20 package org.neuclear.xml.soap; 21 /*** 22 * @author pelleb 23 * @version $Revision: 1.2 $ 24 */ 25 26 import org.neuclear.xml.XMLException; 27 28 public final class SOAPException extends XMLException{ 29 public SOAPException(final String message) { 30 super(message); 31 } 32 33 public SOAPException(final Throwable t) { 34 super(t); 35 } 36 37 public SOAPException(final String message, final Throwable t) { 38 super(message, t); 39 } 40 }

This page was automatically generated by Maven