Package com.protegrity.ap.java
Class InitializationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.protegrity.ap.java.InitializationException
- All Implemented Interfaces:
Serializable
Exception thrown when initialization of Protector components fails.
This exception is typically thrown when required environment variables are missing or authentication with Protegrity services fails during startup.
- Since:
- 1.0.1
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionInitializationException(String message) Constructs a new InitializationException with the specified detail message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
InitializationException
Constructs a new InitializationException with the specified detail message.The message will be prefixed with "Initialization failed: ".
- Parameters:
message- the detail message describing the initialization failure
-