|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.lang.Throwable
java.lang.Exception
javax.telephony.PrivilegeViolationException
A PrivilegeViolationException
indicates that an action pertaining to a
certain object failed because the application did not have the proper
security permissions to execute that command.
This class stores the type of privilege not available which is obtained via
the PrivilegeViolationException.getType()
method.
Field Summary | |
static int |
DESTINATION_VIOLATION
A privilege violation occurred on the destination. |
static int |
ORIGINATOR_VIOLATION
A privilege violation occurred on the originator. |
static int |
UNKNOWN_VIOLATION
A privilege violation occurred at an unknown place. |
Constructor Summary | |
PrivilegeViolationException(int type)
Constructor, takes a type but no string. |
|
PrivilegeViolationException(int type,
java.lang.String s)
Constructor, takes a type and a string. |
Method Summary | |
int |
getType()
Returns the type of privilege which is not available. |
Methods inherited from class java.lang.Throwable |
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
public static final int ORIGINATOR_VIOLATION
public static final int DESTINATION_VIOLATION
public static final int UNKNOWN_VIOLATION
Constructor Detail |
public PrivilegeViolationException(int type)
type
- kind of violationpublic PrivilegeViolationException(int type, java.lang.String s)
type
- kind of violations
- description of the violationMethod Detail |
public int getType()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |