Package oracle.security.am.asdk
Class OperationNotPermittedException
java.lang.Object
java.lang.Throwable
java.lang.Exception
oracle.security.am.asdk.AccessException
oracle.security.am.asdk.OperationNotPermittedException
- All Implemented Interfaces:
Serializable
Represents an error related to insufficient privileges to perform certain
operations.
ASDK consists of Session Management API's which can be performed by privileged agent only. This Exception class indicates an error that an application performing these operations through an agent, which is not privileged
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs an OperationNotPermittedException object with default error messageOperationNotPermittedException<wbr>(Exception ex)
Constructs an OperationnotPermittedException with the specified exception objectOperationNotPermittedException<wbr>(String message)
Constructs an OperationnotPermittedException with the specified messageOperationNotPermittedException<wbr>(String message, Throwable exception)
Constructs an OperationnotPermittedException with the specified message and Throwable cause -
Method Summary
Methods inherited from class oracle.security.am.asdk.AccessException
getMessageID, getParams, toString
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
Constructor Details
-
OperationNotPermittedException
public OperationNotPermittedException()Constructs an OperationNotPermittedException object with default error message -
OperationNotPermittedException
Constructs an OperationnotPermittedException with the specified exception object- Parameters:
ex
- Exception object containing error message
-
OperationNotPermittedException
Constructs an OperationnotPermittedException with the specified message- Parameters:
message
- Exception Message string
-
OperationNotPermittedException
Constructs an OperationnotPermittedException with the specified message and Throwable cause- Parameters:
message
- Exception Message stringexception
- Throwable cause
-