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

EnhancerFatalError

public class EnhancerFatalError extends Exception
Thrown to indicate that the class-file enhancer failed to perform an operation due to a serious error. The enhancer is not guaranteed to be in a consistent state anymore.

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

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

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

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

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