All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.solovyev.common.security.CiphererException Maven / Gradle / Ivy

There is a newer version: 1.0.7
Show newest version
package org.solovyev.common.security;

/**
 * User: serso
 * Date: 8/20/12
 * Time: 7:46 PM
 */
public class CiphererException extends Exception {

    public CiphererException() {
    }

    public CiphererException(String detailMessage) {
        super(detailMessage);
    }

    public CiphererException(String detailMessage, Throwable throwable) {
        super(detailMessage, throwable);
    }

    public CiphererException(Throwable throwable) {
        super(throwable);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy