Class java.telephony.InvalidPartyException
All Packages Class Hierarchy This Package Previous Next Index
Class java.telephony.InvalidPartyException
java.lang.Object
|
+----java.lang.Throwable
|
+----java.lang.Exception
|
+----java.telephony.InvalidPartyException
- public class InvalidPartyException
- extends Exception
Indicates that a party given as an argument to the method call was invalid.
This may either be the originating party of a telephone call or the
destination party of a telephone call, or a transfer, etc.
-
DESTINATION_PARTY
- Indictes that the destiation party was invalid.
-
ORIGINATING_PARTY
- Indicates that the originating party was invalid.
-
InvalidPartyException(int)
- Constructor with no string.
-
InvalidPartyException(int, String)
- Constructor which takes a string description.
-
getType()
- Returns the type of party.
ORIGINATING_PARTY
public final static int ORIGINATING_PARTY
- Indicates that the originating party was invalid.
DESTINATION_PARTY
public final static int DESTINATION_PARTY
- Indictes that the destiation party was invalid.
InvalidPartyException
public InvalidPartyException(int type)
- Constructor with no string.
InvalidPartyException
public InvalidPartyException(int type,
String s)
- Constructor which takes a string description.
getType
public int getType()
- Returns the type of party.
- Returns:
- The type of party.
All Packages Class Hierarchy This Package Previous Next Index