FileDocCategorySizeDatePackage
CommandException.javaAPI DocGlassfish v2 API2817Fri May 04 22:25:20 BST 2007com.sun.enterprise.cli.framework

CommandException

public class CommandException extends Exception

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

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

param
msg the detail message.

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

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

	super(msg, cause);
    
Methods Summary