com.tosan.tools.tencryptor.exception.EncryptionException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tencryptor Show documentation
Show all versions of tencryptor Show documentation
A java library that provide basic encryption utility.
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