Class ConnectorInstallException
java.lang.Object
java.lang.Throwable
java.lang.Exception
oracle.iam.connectormgmt.exception.ConnectorInstallException
- All Implemented Interfaces:
Serializable
This exception is thrown if there are any issues during Connector Installation process,
( including unmarshalling xml, uploading jars and resource bundles, imporing DM xml etc.)
Base exception for Connnector installation operation.
- Author:
- aruchauh
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs an ConnectorInstallException object with the specified exception.ConnectorInstallException
(String message) Constructs an ConnectorInstallException object with the specified detail message.ConnectorInstallException
(String message, Throwable cause) Constructs an ConnectorInstallException object with the specified detail message and cause.Constructs an ConnectorInstallaException object with the specified cause which contains the class and detail message of cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ConnectorInstallException
Constructs an ConnectorInstallException object with the specified detail message and cause.- Parameters:
message
- The detail message which is saved for later retrieval by the Throwable.getMessage() method.cause
- The cause which is saved for later retrieval by the Throwable.getCause() method.
-
ConnectorInstallException
Constructs an ConnectorInstallaException object with the specified cause which contains the class and detail message of cause.- Parameters:
cause
- The cause which is saved for later retrieval by the Throwable.getCause() method.
-
ConnectorInstallException
Constructs an ConnectorInstallException object with the specified exception.- Parameters:
e
- The base exception.
-
ConnectorInstallException
Constructs an ConnectorInstallException object with the specified detail message.- Parameters:
message
- The detail message which is saved for later retrieval by the Throwable.getMessage() method.
-