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

JDOUnsupportedOptionException

public class JDOUnsupportedOptionException extends JDOUserException
author
Craig Russell
version
0.1

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

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

param
msg the detail message.

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

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

    super(msg, nested);
  
Methods Summary