Class java.telephony.InvalidObjectException
All Packages Class Hierarchy This Package Previous Next Index
Class java.telephony.InvalidObjectException
java.lang.Object
|
+----java.lang.Throwable
|
+----java.lang.Exception
|
+----java.telephony.InvalidObjectException
- public class InvalidObjectException
- extends Exception
The object on which the method exists is invalid. An invalid object
exception typically occurs when an internal error occurs which causes
this object to become invalid for unknown reasons. Typically, once
an object becomes invalid, it generally stays that way. This exception
indicates which call control object is invalid.
-
ADDRESS_OBJECT
- The invalid object in question is the Address
-
CALL_OBJECT
- The invalid object in question is the Call
-
CONNECTION_OBJECT
- The invalid object in question is the Connection
-
PROVIDER_OBJECT
- The invalid object in question is the Provider
-
TERMINAL_CONNECTION_OBJECT
- The invalid object in question is the TerminalConnection
-
TERMINAL_OBJECT
- The invalid object in question is the Terminal
-
InvalidObjectException(Object, int)
- Constructor with no string.
-
InvalidObjectException(Object, int, String)
- Constructor which takes a string description.
-
getObject()
- Returns a generic pointer to the object which caused the exception.
-
getObjectType()
- Returns the type of object in question
PROVIDER_OBJECT
public final static int PROVIDER_OBJECT
- The invalid object in question is the Provider
CALL_OBJECT
public final static int CALL_OBJECT
- The invalid object in question is the Call
CONNECTION_OBJECT
public final static int CONNECTION_OBJECT
- The invalid object in question is the Connection
TERMINAL_OBJECT
public final static int TERMINAL_OBJECT
- The invalid object in question is the Terminal
ADDRESS_OBJECT
public final static int ADDRESS_OBJECT
- The invalid object in question is the Address
TERMINAL_CONNECTION_OBJECT
public final static int TERMINAL_CONNECTION_OBJECT
- The invalid object in question is the TerminalConnection
InvalidObjectException
public InvalidObjectException(Object object,
int type)
- Constructor with no string.
InvalidObjectException
public InvalidObjectException(Object object,
int type,
String s)
- Constructor which takes a string description.
getObjectType
public int getObjectType()
- Returns the type of object in question
- Returns:
- The type of object in question.
getObject
public Object getObject()
- Returns a generic pointer to the object which caused the exception.
- Returns:
- The object which caused the exception.
All Packages Class Hierarchy This Package Previous Next Index