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

CommandValidationException

public class CommandValidationException extends Exception

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

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

param
msg the detail message.

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

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

	super(msg, cause);
    
Methods Summary