javax.jdo

Class JDODetachedFieldAccessException


public class JDODetachedFieldAccessException
extends JDOUserException

This class represents exceptions caused by access of an unloaded field while the instance is detached.
Version:
2.0
Since:
2.0

Constructor Summary

JDODetachedFieldAccessException()
Constructs a new JDODetachedFieldAccessException without a detail message.
JDODetachedFieldAccessException(String msg)
Constructs a new JDODetachedFieldAccessException with the specified detail message.
JDODetachedFieldAccessException(String msg, Throwable nested)
Constructs a new JDODetachedFieldAccessException with the specified detail message and nested Throwables.
JDODetachedFieldAccessException(String msg, Throwable[] nested)
Constructs a new JDODetachedFieldAccessException with the specified detail message and nested Throwables.

Method Summary

Methods inherited from class javax.jdo.JDOException

getCause, getFailedObject, getNestedExceptions, initCause, printStackTrace, printStackTrace, printStackTrace, toString

Constructor Details

JDODetachedFieldAccessException

public JDODetachedFieldAccessException()
Constructs a new JDODetachedFieldAccessException without a detail message.
Since:
2.0

JDODetachedFieldAccessException

public JDODetachedFieldAccessException(String msg)
Constructs a new JDODetachedFieldAccessException with the specified detail message.
Parameters:
msg - the detail message.
Since:
2.0

JDODetachedFieldAccessException

public JDODetachedFieldAccessException(String msg,
                                       Throwable nested)
Constructs a new JDODetachedFieldAccessException with the specified detail message and nested Throwables.
Parameters:
msg - the detail message.
nested - the nested Throwable.
Since:
2.0

JDODetachedFieldAccessException

public JDODetachedFieldAccessException(String msg,
                                       Throwable[] nested)
Constructs a new JDODetachedFieldAccessException with the specified detail message and nested Throwables.
Parameters:
msg - the detail message.
nested - the nested Throwable[].
Since:
2.0