package org.atricore.idbus.capabilities.atricoreid.common; /** * @author <a href=mailto:sgonzalez@atricore.org>Sebastian Gonzalez Oyuela</a> */ public class AtricoreIDEncryptionException extends Exception { public AtricoreIDEncryptionException() { super(); //To change body of overridden methods use File | Settings | File Templates. } public AtricoreIDEncryptionException(String s) { super(s); //To change body of overridden methods use File | Settings | File Templates. } public AtricoreIDEncryptionException(String s, Throwable throwable) { super(s, throwable); //To change body of overridden methods use File | Settings | File Templates. } public AtricoreIDEncryptionException(Throwable throwable) { super(throwable); //To change body of overridden methods use File | Settings | File Templates. } }