FileDocCategorySizeDatePackage
UserException.javaAPI DocGlassfish v2 API3104Fri May 04 22:34:40 BST 2007com.sun.jdo.api.persistence.enhancer.util

UserException

public class UserException extends RuntimeException
Thrown to indicate that the class-file enhancer failed to perform an operation due to a serious error.

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

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

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

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

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