Class NoCommandGivenException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.github.mafelp.utils.exceptions.NoCommandGivenException
- All Implemented Interfaces:
java.io.Serializable
public class NoCommandGivenException
extends java.lang.Exception
The Exception thrown if no command is passed into the command parser.
- See Also:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description NoCommandGivenException(java.lang.String message)
The constructor to create the throwable. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Constructor Details
-
NoCommandGivenException
public NoCommandGivenException(java.lang.String message)The constructor to create the throwable.- Parameters:
message
- The message that is being displayed in non-debug mode.
-