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.

Variable Index

 o ADDRESS_OBJECT
The invalid object in question is the Address
 o CALL_OBJECT
The invalid object in question is the Call
 o CONNECTION_OBJECT
The invalid object in question is the Connection
 o PROVIDER_OBJECT
The invalid object in question is the Provider
 o TERMINAL_CONNECTION_OBJECT
The invalid object in question is the TerminalConnection
 o TERMINAL_OBJECT
The invalid object in question is the Terminal

Constructor Index

 o InvalidObjectException(Object, int)
Constructor with no string.
 o InvalidObjectException(Object, int, String)
Constructor which takes a string description.

Method Index

 o getObject()
Returns a generic pointer to the object which caused the exception.
 o getObjectType()
Returns the type of object in question

Variables

 o PROVIDER_OBJECT
  public final static int PROVIDER_OBJECT
The invalid object in question is the Provider
 o CALL_OBJECT
  public final static int CALL_OBJECT
The invalid object in question is the Call
 o CONNECTION_OBJECT
  public final static int CONNECTION_OBJECT
The invalid object in question is the Connection
 o TERMINAL_OBJECT
  public final static int TERMINAL_OBJECT
The invalid object in question is the Terminal
 o ADDRESS_OBJECT
  public final static int ADDRESS_OBJECT
The invalid object in question is the Address
 o TERMINAL_CONNECTION_OBJECT
  public final static int TERMINAL_CONNECTION_OBJECT
The invalid object in question is the TerminalConnection

Constructors

 o InvalidObjectException
  public InvalidObjectException(Object object,
                                int type)
Constructor with no string.
 o InvalidObjectException
  public InvalidObjectException(Object object,
                                int type,
                                String s)
Constructor which takes a string description.

Methods

 o getObjectType
  public int getObjectType()
Returns the type of object in question

Returns:
The type of object in question.
 o 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