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

JDOQueryException

public class JDOQueryException extends JDOUserException
author
Michael Bouschen
version
0.1

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

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

param
msg the detail message.

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

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

        super(msg, nested);
    
Methods Summary