for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
package com.github.netkorp.telegram.framework.exceptions;
/**
* Indicates that the command is not available.
*/
public class CommandNotFound extends Exception {
* Constructs a new exception with {@code null} as its detail message.
* The cause is not initialized, and may subsequently be initialized by a
* call to {@link #initCause}.
public CommandNotFound() {
super("This command is not valid");
}