Package com.primavera.common.exceptions
Class InvalidBootstrapException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.primavera.PrimaveraException
com.primavera.ServerException
com.primavera.PhoenixException
com.primavera.common.exceptions.InvalidBootstrapException
- All Implemented Interfaces:
Serializable
An exception class used for problems encountered with the bootstrap, such
as an unspecified or invalid 'primavera.bootstrap.home' system property.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDefault class constructor.InvalidBootstrapException(String message, Throwable cause) Class constructor specifying a detailed message and the original thrown exception.Class constructor specifying the original thrown exception. -
Method Summary
Methods inherited from class com.primavera.ServerException
getSource, setSourceMethods inherited from class com.primavera.PrimaveraException
getOriginalException, getStackTrace, getStackTrace, isSQLExceptionThrown, printStackTrace, printStackTrace, printStackTrace, removeOriginalExceptionMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getSuppressed, initCause, setStackTrace, toString
-
Constructor Details
-
InvalidBootstrapException
public InvalidBootstrapException()Default class constructor. -
InvalidBootstrapException
Class constructor specifying the original thrown exception.- Parameters:
cause- the originally thrown exception
-
InvalidBootstrapException
Class constructor specifying a detailed message and the original thrown exception.- Parameters:
message- the detailed message of this exceptioncause- the originally thrown exception
-