Class CommandReadFailedException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.aspectran.shell.console.CommandReadFailedException
All Implemented Interfaces:
Serializable

public class CommandReadFailedException extends RuntimeException
Exception thrown when a command fails to read.
See Also:
  • Constructor Details

    • CommandReadFailedException

      public CommandReadFailedException()
      Simple constructor.
    • CommandReadFailedException

      public CommandReadFailedException(String msg)
      Constructor to create exception with a message.
      Parameters:
      msg - a message to associate with the exception
    • CommandReadFailedException

      public CommandReadFailedException(Throwable cause)
      Constructor to create exception to wrap another exception.
      Parameters:
      cause - the real cause of the exception
    • CommandReadFailedException

      public CommandReadFailedException(String msg, Throwable cause)
      Constructor to create exception to wrap another exception and pass a message.
      Parameters:
      msg - the message
      cause - the real cause of the exception