FileDocCategorySizeDatePackage
JDOFatalException.javaAPI DocGlassfish v2 API2795Fri May 04 22:34:54 BST 2007com.sun.jdo.api.persistence.support

JDOFatalException

public class JDOFatalException extends JDOException
author
Craig Russell
version
0.1

Fields Summary
Constructors Summary
public JDOFatalException()
Creates a new JDOFatalException without detail message.

  
public JDOFatalException(String msg)
Constructs a new JDOFatalException with the specified detail message.

param
msg the detail message.

    super(msg);
  
public JDOFatalException(String msg, Exception nested)
Constructs a new JDOFatalException with the specified detail message and nested Exception.

param
msg the detail message.
param
nested the nested Exception.

    super(msg, nested);
  
Methods Summary