javax.jdo
Class JDOException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--javax.jdo.JDOException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
JDOCanRetryException, JDOFatalException

public class JDOException
extends java.lang.RuntimeException

This is the root of all JDO Exceptions. It contains an optional detail message, an optional nested Throwable array and an optional failed object.

Version:
0.9
Author:
Craig Russell
See Also:
Serialized Form

Field Summary
(package private)  java.lang.Object failed
          This exception may be the result of incorrect parameters supplied to an API.
(package private)  java.lang.Throwable[] nested
          This exception was generated because of an exception in the runtime library.
 
Fields inherited from class java.lang.RuntimeException
 
Constructor Summary
JDOException()
          Constructs a new JDOException without a detail message.
JDOException(java.lang.String msg)
          Constructs a new JDOException with the specified detail message.
JDOException(java.lang.String msg, java.lang.Object failed)
          Constructs a new JDOException with the specified detail message and failed object.
JDOException(java.lang.String msg, java.lang.Throwable nested)
          Constructs a new JDOException with the specified detail message and nested Throwable.
JDOException(java.lang.String msg, java.lang.Throwable[] nested)
          Constructs a new JDOException with the specified detail message and nested Throwables.
JDOException(java.lang.String msg, java.lang.Throwable[] nested, java.lang.Object failed)
          Constructs a new JDOException with the specified detail message, nested Throwables, and failed object.
JDOException(java.lang.String msg, java.lang.Throwable nested, java.lang.Object failed)
          Constructs a new JDOException with the specified detail message, nested Throwable, and failed object.
 
Method Summary
 java.lang.Object getFailedObject()
          The exception may include a failed object.
 java.lang.Throwable[] getNestedExceptions()
          The exception may have been caused by multiple exceptions in the runtime.
 void printStackTrace()
          Prints this JDOException and its backtrace to the standard error output.
 void printStackTrace(java.io.PrintStream s)
          Prints this JDOException and its backtrace to the specified print stream.
 void printStackTrace(java.io.PrintWriter s)
          Prints this JDOException and its backtrace to the specified print writer.
 java.lang.String toString()
          The String representation includes the name of the class, the descriptive comment (if any), the String representation of the failed Object (if any), and the String representation of the nested Throwables (if any).
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, setStackTrace
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

nested

java.lang.Throwable[] nested
This exception was generated because of an exception in the runtime library.


failed

java.lang.Object failed
This exception may be the result of incorrect parameters supplied to an API. This is the object from which the user can determine the cause of the problem.

Constructor Detail

JDOException

public JDOException()
Constructs a new JDOException without a detail message.


JDOException

public JDOException(java.lang.String msg)
Constructs a new JDOException with the specified detail message.

Parameters:
msg - the detail message.

JDOException

public JDOException(java.lang.String msg,
                    java.lang.Throwable[] nested)
Constructs a new JDOException with the specified detail message and nested Throwables.

Parameters:
msg - the detail message.
nested - the nested Throwable[].

JDOException

public JDOException(java.lang.String msg,
                    java.lang.Throwable nested)
Constructs a new JDOException with the specified detail message and nested Throwable.

Parameters:
msg - the detail message.
nested - the nested Throwable.

JDOException

public JDOException(java.lang.String msg,
                    java.lang.Object failed)
Constructs a new JDOException with the specified detail message and failed object.

Parameters:
msg - the detail message.
failed - the failed object.

JDOException

public JDOException(java.lang.String msg,
                    java.lang.Throwable[] nested,
                    java.lang.Object failed)
Constructs a new JDOException with the specified detail message, nested Throwables, and failed object.

Parameters:
msg - the detail message.
nested - the nested Throwable[].
failed - the failed object.

JDOException

public JDOException(java.lang.String msg,
                    java.lang.Throwable nested,
                    java.lang.Object failed)
Constructs a new JDOException with the specified detail message, nested Throwable, and failed object.

Parameters:
msg - the detail message.
nested - the nested Throwable.
failed - the failed object.
Method Detail

getFailedObject

public java.lang.Object getFailedObject()
The exception may include a failed object.

Returns:
the failed object.

getNestedExceptions

public java.lang.Throwable[] getNestedExceptions()
The exception may have been caused by multiple exceptions in the runtime. If multiple objects caused the problem, each failed object will have its own Exception.

Returns:
the nested Throwable array.

toString

public java.lang.String toString()
The String representation includes the name of the class, the descriptive comment (if any), the String representation of the failed Object (if any), and the String representation of the nested Throwables (if any).

Overrides:
toString in class java.lang.Throwable
Returns:
the String.

printStackTrace

public void printStackTrace()
Prints this JDOException and its backtrace to the standard error output. Print nested Throwables' stack trace as well.

Overrides:
printStackTrace in class java.lang.Throwable

printStackTrace

public void printStackTrace(java.io.PrintStream s)
Prints this JDOException and its backtrace to the specified print stream. Print nested Throwables' stack trace as well.

Overrides:
printStackTrace in class java.lang.Throwable
Parameters:
s - PrintStream to use for output

printStackTrace

public void printStackTrace(java.io.PrintWriter s)
Prints this JDOException and its backtrace to the specified print writer. Print nested Throwables' stack trace as well.

Overrides:
printStackTrace in class java.lang.Throwable
Parameters:
s - PrintWriter to use for output