Class InvalidCommandException

java.lang.Object
java.lang.Throwable
java.lang.Exception
org.apache.sis.console.InvalidCommandException
All Implemented Interfaces:
Serializable

public class InvalidCommandException extends Exception
Thrown when a unknown command has been given by the user on the command-line.
Since:
0.3
Version:
0.3
See Also:
  • Field Details

    • serialVersionUID

      private static final long serialVersionUID
      For cross-version compatibility.
      See Also:
    • command

      private final String command
      The name of the invalid command.
  • Constructor Details

    • InvalidCommandException

      public InvalidCommandException(String message, String command)
      Constructs an exception with the specified detail message.
      Parameters:
      message - the detail message.
      command - the name of the invalid command.
  • Method Details

    • getCommand

      public String getCommand()
      Returns the name of the invalid command.
      Returns:
      the name of the invalid command.