Package de.aristaflow.adept2.util
Class IntegrityException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- de.aristaflow.adept2.util.IntegrityException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
SecurityTokenIntegrityException
public class IntegrityException extends Exception
AIntegrityException
indicates that the integrity of public or private key or a signature cannot be established.- Author:
- Ulrich Kreher
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description IntegrityException(String message)
Creates a newIntegrityException
to indicate problems with a public or private key or a signature.IntegrityException(String message, Throwable cause)
Creates a newIntegrityException
to indicate problems with a public or private key or a signature.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
IntegrityException
public IntegrityException(String message)
Creates a newIntegrityException
to indicate problems with a public or private key or a signature.- Parameters:
message
- The message for the exception.
-
IntegrityException
public IntegrityException(String message, Throwable cause)
Creates a newIntegrityException
to indicate problems with a public or private key or a signature.- Parameters:
message
- The message for the exception.cause
- The exception that indicates the invalid integrity and providing detailed information on the failure.
-
-