Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.jxbeans
Class JXBeanException  view JXBeanException download JXBeanException.java

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byorg.jxbeans.JXBeanException
All Implemented Interfaces:
java.io.Serializable

public class JXBeanException
extends java.lang.Exception

The JXBeanException is the exception that can be thrown by any JXBean. This exception provides constructors so that detailed information about the failure can be provided by the JXBean that throws this exception, including the document that was being processed and the causing exception, if applicable.

Since:
1.0
Version:
1.0

Nested Class Summary
 
Nested classes inherited from class java.lang.Throwable
 
Field Summary
private  java.lang.Object component
           
private  org.jdom.Document document
           
private  java.lang.String message
           
private  java.lang.Exception nestedException
           
 
Fields inherited from class java.lang.Exception
 
Fields inherited from class java.lang.Throwable
 
Constructor Summary
private JXBeanException()
           
  JXBeanException(java.lang.Object aComponent, org.jdom.Document aDocument, java.lang.String aMessage)
          Constructs a new JXBeanException to be thrown by a JXBean in the process of executing.
  JXBeanException(java.lang.Object aComponent, org.jdom.Document aDocument, java.lang.String aMessage, java.lang.Exception anException)
          Constructs a new JXBeanException to be thrown by a JXBean in the process of executing.
  JXBeanException(java.lang.Object aComponent, java.lang.String aMessage, java.lang.Exception anException)
          Constructs a new JXBeanException to be thrown by a JXBean in the process of executing.
 
Method Summary
 java.lang.Object getComponent()
           
 org.jdom.Document getDocument()
           
 java.lang.String getMessage()
          Get the message associated with this Throwable.
 java.lang.Exception getNestedException()
           
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, 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

component

private java.lang.Object component

document

private org.jdom.Document document

message

private java.lang.String message

nestedException

private java.lang.Exception nestedException
Constructor Detail

JXBeanException

private JXBeanException()

JXBeanException

public JXBeanException(java.lang.Object aComponent,
                       java.lang.String aMessage,
                       java.lang.Exception anException)
Constructs a new JXBeanException to be thrown by a JXBean in the process of executing.

Since:
1.0

JXBeanException

public JXBeanException(java.lang.Object aComponent,
                       org.jdom.Document aDocument,
                       java.lang.String aMessage)
Constructs a new JXBeanException to be thrown by a JXBean in the process of executing.

Since:
1.0

JXBeanException

public JXBeanException(java.lang.Object aComponent,
                       org.jdom.Document aDocument,
                       java.lang.String aMessage,
                       java.lang.Exception anException)
Constructs a new JXBeanException to be thrown by a JXBean in the process of executing.

Since:
1.0
Method Detail

getComponent

public java.lang.Object getComponent()
Since:
1.0

getMessage

public java.lang.String getMessage()
Description copied from class: java.lang.Throwable
Get the message associated with this Throwable.

Since:
1.0

getDocument

public org.jdom.Document getDocument()
Since:
1.0

getNestedException

public java.lang.Exception getNestedException()
Since:
1.0