Class CommandException

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
AccessControlException

public class CommandException extends ControllerException
An exception thrown by a Web Site Command.
Since:
1.0
Version:
1.0
Author:
Luke
See Also:
  • Constructor Details

    • CommandException

      public CommandException(String msg)
      Create a new CommandException with an error message.
      Parameters:
      msg - the error message
    • CommandException

      public CommandException(String msg, boolean dumpStack)
      Creates a new CommandException with an error message, and controls stack dumping.
      Parameters:
      msg -
      dumpStack -
    • CommandException

      public CommandException(String msg, Throwable t)
      Create a new CommandException with an error message and underlying cause.
      Parameters:
      msg - the error message
      t - the root cause Exception
      See Also:
    • CommandException

      public CommandException(Throwable t)
      Create a new CommandException that wraps an underlying exception.
      Parameters:
      t - the root cause Exception.
    • CommandException

      public CommandException(ControllerException ce)
      Create a new CommandException that wraps another Controller exception. The intermediate exception will be stripped out.
      Parameters:
      ce - the root Controller Exception