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

com.jcohy.security.exception.EncryptException Maven / Gradle / Ivy

The newest version!
package com.jcohy.security.exception;

/**
 * created by Wuwenbin on 2017/8/19 at 21:20
 */
public class EncryptException extends RuntimeException {

    public EncryptException() {
        super();
    }

    public EncryptException(String message) {
        super(message);
    }

    public EncryptException(Throwable cause) {
        super(cause);
    }

    public EncryptException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy