FileDocCategorySizeDatePackage
JDOMetaDataUserException.javaAPI DocGlassfish v2 API3310Fri May 04 22:34:38 BST 2007com.sun.jdo.api.persistence.enhancer.meta

JDOMetaDataUserException

public class JDOMetaDataUserException extends RuntimeException
Thrown to indicate that an access to JDO meta-data failed; the meta-data component is assured to remain in consistent state.

Fields Summary
public final Throwable
nested
An optional nested exception.
Constructors Summary
public JDOMetaDataUserException()
Constructs an JDOMetaDataUserException with no detail message.

        this.nested = null;
    
public JDOMetaDataUserException(String msg)
Constructs an JDOMetaDataUserException with the specified detail message.

        super(msg);
        this.nested = null;
    
public JDOMetaDataUserException(Throwable nested)
Constructs an JDOMetaDataUserException with an optional nested exception.

        super("nested exception: " + nested);//NOI18N
        this.nested = nested;
    
public JDOMetaDataUserException(String msg, Throwable nested)
Constructs an JDOMetaDataUserException with the specified detail message and an optional nested exception.

        super(msg);
        this.nested = nested;
    
Methods Summary