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

com.tosan.tools.tencryptor.exception.EncryptionException Maven / Gradle / Ivy

The newest version!
package com.tosan.tools.tencryptor.exception;

/**
 * @author Ali Alimohammadi
 * @since 04/08/2023
 */
public class EncryptionException extends RuntimeException {

    public EncryptionException() {
    }

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

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

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy