Package africa.absa.inception.security
Class InvalidConfigurationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- africa.absa.inception.core.service.ServiceException
-
- africa.absa.inception.security.InvalidConfigurationException
-
- All Implemented Interfaces:
Serializable
public class InvalidConfigurationException extends africa.absa.inception.core.service.ServiceExceptionA InvalidConfigurationException is thrown to indicate that a security operation failed as a result of invalid configuration.This is a checked exception to prevent the automatic rollback of the current transaction.
- Author:
- Marcus Portmann
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InvalidConfigurationException(String message)Constructs a new InvalidConfigurationException with the specified message.InvalidConfigurationException(String message, Throwable cause)Constructs a new InvalidConfigurationException with the specified message and cause.
-
Method Summary
-
Methods inherited from class africa.absa.inception.core.service.ServiceException
getFaultInfo, getTimestamp
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
InvalidConfigurationException
public InvalidConfigurationException(String message)
Constructs a new InvalidConfigurationException with the specified message.- Parameters:
message- The message saved for later retrieval by the getMessage() method.
-
InvalidConfigurationException
public InvalidConfigurationException(String message, Throwable cause)
Constructs a new InvalidConfigurationException with the specified message and cause.- Parameters:
message- The message saved for later retrieval by the getMessage() method.cause- The cause saved for later retrieval by the getCause() method. (A null value is permitted if the cause is nonexistent or unknown)
-
-