FileDocCategorySizeDatePackage
MonitorTaskException.javaAPI DocGlassfish v2 API2873Fri May 04 22:25:18 BST 2007com.sun.enterprise.cli.commands.monitor

MonitorTaskException

public class MonitorTaskException extends Exception

Fields Summary
Constructors Summary
public MonitorTaskException()
Creates new MonitorTaskException without detail message.

    
public MonitorTaskException(String msg)
Constructs an MonitorTaskException with the specified detail message.

param
msg the detail message.

        super(msg);
    
public MonitorTaskException(Throwable cause)
Constructs a new MonitorTaskException exception with the specified cause

        super(cause);
    
public MonitorTaskException(String msg, Throwable cause)
Constructs a new MonitorTaskException exception with the specified detailed message and cause

        super(msg, cause);
    
Methods Summary