FileDocCategorySizeDatePackage
JDOFatalInternalException.javaAPI DocGlassfish v2 API2864Fri May 04 22:34:56 BST 2007com.sun.jdo.api.persistence.support

JDOFatalInternalException

public class JDOFatalInternalException extends JDOFatalException
author
Craig Russell
version
0.1

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

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

param
msg the detail message.

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

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

    super(msg, nested);
  
Methods Summary