crypto.exceptions.CryptoAnalysisException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of CryptoAnalysis Show documentation
Show all versions of CryptoAnalysis Show documentation
CogniCrypt_SAST: CrySL-to-Static Analysis Compiler
The newest version!
package crypto.exceptions;
/**
* This is an exception that is thrown when something is not working as expected and is explicitly
* related to the CryptoAnalysis tool.
*/
public class CryptoAnalysisException extends RuntimeException {
private static final long serialVersionUID = -4977113204413613078L;
/**
* Constructs a new exception with the specified detail message.
*
* @param message a detail message.
*/
public CryptoAnalysisException(String message) {
super(message);
}
/**
* Constructs a new exception with the specified detail message and cause.
*
* @param message a detail message.
* @param cause the cause of the exception.
*/
public CryptoAnalysisException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy