Package oracle.security.am.plugin
Class PluginRuntimeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
oracle.security.am.plugin.PluginRuntimeException
- All Implemented Interfaces:
Serializable
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionPluginRuntimeException<wbr>(String message)
Constructor to create an exception with a message ID or message.PluginRuntimeException<wbr>(String message, Exception e)
Constructor to create an exception with a message ID or message and an exception.PluginRuntimeException<wbr>(Throwable e)
Constructor with an exception. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
PluginRuntimeException
Constructor with an exception. This will be used to convert the exception to PluginRuntimeException. If the exception need to be handled in downstream specify an error code using.public void setErrorCode(int errorCode)
method or overloaded constructor that takes error code.- Parameters:
e
-
-
PluginRuntimeException
Constructor to create an exception with a message ID or message. If the exception need to be handled in downstream specify an error code using.public void setErrorCode(int errorCode)
method or overloaded constructor that takes error code.- Parameters:
message
-
-
PluginRuntimeException
Constructor to create an exception with a message ID or message and an exception. If the exception need to be handled in downstream specify an error code using.public void setErrorCode(int errorCode)
method or overloaded constructor that takes error code.- Parameters:
message
-e
-
-