com.biuqu.encryption.exception.EncryptionException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bq-encryptor Show documentation
Show all versions of bq-encryptor Show documentation
easy use for mostly encryption
The newest version!
package com.biuqu.encryption.exception;
/**
* 加解密异常类(运行时异常)
*
* @author BiuQu
* @date 2022/10/07 22:49
**/
public class EncryptionException extends RuntimeException
{
public EncryptionException(String message)
{
super(EXCEPTION_PREFIX + message);
}
public EncryptionException(String message, Throwable cause)
{
super(EXCEPTION_PREFIX + message, cause);
}
/**
* 异常前缀
*/
private static final String EXCEPTION_PREFIX = "EncryptionException with:";
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy