FileDocCategorySizeDatePackage
AFRuntimeException.javaAPI DocGlassfish v2 API2718Fri May 04 22:33:32 BST 2007com.sun.enterprise.admin.common.exception

AFRuntimeException

public class AFRuntimeException extends RuntimeException
This exception is the super class of all Administration framework related runtime exceptions.

Fields Summary
Constructors Summary
public AFRuntimeException()

    
public AFRuntimeException(String message)
Constructs an AFException object

param
message

        super(message);
    
public AFRuntimeException(Throwable throwable)

        super(throwable);
    
public AFRuntimeException(String message, Throwable throwable)

        super(message, throwable);
    
Methods Summary
public java.lang.StringgetLocalizedMessage()

        String i18nMsg = getMessage();
        return i18nMsg;