Package org.exolab.castor.jdo
Class DataObjectAccessException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.exolab.castor.jdo.DataObjectAccessException
-
- All Implemented Interfaces:
java.io.Serializable
public class DataObjectAccessException extends java.lang.RuntimeException
An exception encapsulating another exception which occurs during operation to data object.- Version:
- $Revision: 8104 $ $Date: 2006-02-23 13:49:30 -0700 (Thu, 23 Feb 2006) $
- Author:
- Sebastien Gignoux
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DataObjectAccessException(java.lang.String message)
Creates an instance of this exception.DataObjectAccessException(java.lang.String message, java.lang.Throwable cause)
Creates an instance of this exception.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Throwable
getCause()
Match the JDK 1.4 Throwable version of getCause() on JDK<1.4 systems.void
printStackTrace()
Print a stack trace to stderr.void
printStackTrace(java.io.PrintStream s)
Print a stack trace to the specified PrintStream.void
printStackTrace(java.io.PrintWriter w)
Print a stack trace to the specified PrintWriter.
-
-
-
Constructor Detail
-
DataObjectAccessException
public DataObjectAccessException(java.lang.String message, java.lang.Throwable cause)
Creates an instance of this exception.- Parameters:
message
- The error message.cause
- The original excepton.
-
DataObjectAccessException
public DataObjectAccessException(java.lang.String message)
Creates an instance of this exception.- Parameters:
message
- The error message.
-
-
Method Detail
-
getCause
public final java.lang.Throwable getCause()
Match the JDK 1.4 Throwable version of getCause() on JDK<1.4 systems.- Overrides:
getCause
in classjava.lang.Throwable
- Returns:
- The throwable cause of this exception.
-
printStackTrace
public final void printStackTrace()
Print a stack trace to stderr.- Overrides:
printStackTrace
in classjava.lang.Throwable
-
printStackTrace
public final void printStackTrace(java.io.PrintStream s)
Print a stack trace to the specified PrintStream.- Overrides:
printStackTrace
in classjava.lang.Throwable
- Parameters:
s
- The PrintStream to print a stack trace to.
-
printStackTrace
public final void printStackTrace(java.io.PrintWriter w)
Print a stack trace to the specified PrintWriter.- Overrides:
printStackTrace
in classjava.lang.Throwable
- Parameters:
w
- The PrintWriter to print a stack trace to.
-
-