Class com.ibm.ivj.db.uibeans.ExceptionEvent
java.lang.Object
|
+----java.util.EventObject
|
+----com.ibm.ivj.db.uibeans.ExceptionEvent
- public class ExceptionEvent
- extends EventObject
This is the event class to support the com.ibm.ivj.db.uibeans.ExeceptionListener
interface.
Constructor Index
- ExceptionEvent(Object, Exception)
- Constructs a new ExceptionEvent.
Method Index
- getException()
- Returns the exception that was raised.
- toString()
- Returns a String that contains the class that raised the exception and
the message(s) associated with the exception.
Constructors
ExceptionEvent
public ExceptionEvent(Object source,
Exception raisedException)
- Constructs a new ExceptionEvent.
- Parameters:
- source - the source of the exception
- raisedException - the exception that was raised
Methods
getException
public Exception getException()
- Returns the exception that was raised.
- Returns:
- the exception that was raised.
toString
public String toString()
- Returns a String that contains the class that raised the exception and
the message(s) associated with the exception.
- Parameters:
- source - the source of the exception
- raisedException - the exception that was raised
- Overrides:
- toString in class EventObject
