FileDocCategorySizeDatePackage
EnhancerUserException.javaAPI DocGlassfish v2 API3221Fri May 04 22:34:26 BST 2007com.sun.jdo.api.persistence.enhancer

EnhancerUserException

public class EnhancerUserException extends Exception
Thrown to indicate that the class-file enhancer failed to perform an operation due to an error. The enhancer is guaranteed to remain in a consistent state.

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

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

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

        super(nested.toString());
        this.nested = nested;
    
public EnhancerUserException(String msg, Throwable nested)
Constructs an EnhancerUserException with the specified detail message and an optional nested exception.

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