FileDocCategorySizeDatePackage
CommandException.javaAPI DocJBoss 4.2.12277Fri Jul 13 21:02:16 BST 2007org.jboss.console.twiddle.command

CommandException

public class CommandException extends org.jboss.util.NestedException
A command exception.
version
$Revision: 57191 $
author
Jason Dillon

Fields Summary
Constructors Summary
public CommandException(String msg)
Construct a CommandException with the specified detail message.

param
msg Detail message.

      super(msg);
   
public CommandException(String msg, Throwable nested)
Construct a CommandException with the specified detail message and nested Throwable.

param
msg Detail message.
param
nested Nested Throwable.

      super(msg, nested);
   
public CommandException(Throwable nested)
Construct a CommandException with the specified nested Throwable.

param
nested Nested Throwable.

      super(nested);
   
public CommandException()
Construct a CommandException with no detail.

      super();
   
Methods Summary