package ve.gob.cenditel.tibisaymovil; /** * Error managing the certificate and private key store. * * @author José M. Prieto (jmprieto@emergya.com) */ public class KeystoreException extends TibisayMovilException { private static final long serialVersionUID = 8570856876444245574L; public KeystoreException() {} public KeystoreException(String message) { super(message); } public KeystoreException(String message, Throwable cause) { super(message, cause); } public KeystoreException(Throwable cause) { super(cause); } }