Package org.bouncycastle.crypto.fips
Class FipsOperationError
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Error
-
- java.lang.AssertionError
-
- org.bouncycastle.crypto.fips.FipsOperationError
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
FipsConsistencyTestFailedError
,FipsSelfTestFailedError
,FipsUnapprovedOperationError
public class FipsOperationError extends java.lang.AssertionError
Base error class for FIPS errors.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description FipsOperationError(java.lang.String message)
Base constructor.FipsOperationError(java.lang.String message, java.lang.Throwable cause)
Constructor for an error associated with a specific algorithm.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Throwable
getCause()
-
-
-
Constructor Detail
-
FipsOperationError
public FipsOperationError(java.lang.String message)
Base constructor.- Parameters:
message
- a message describing the error.
-
FipsOperationError
public FipsOperationError(java.lang.String message, java.lang.Throwable cause)
Constructor for an error associated with a specific algorithm.- Parameters:
message
- a message describing the error.cause
- the throwable that caused this exception to be raised.
-
-