Class AliasConflictException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.aesh.readline.alias.AliasConflictException
- All Implemented Interfaces:
Serializable
Exception thrown when an alias name conflicts with an existing command or alias.
- Author:
- Ståle Pedersen
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a new AliasConflictException with no detail message.AliasConflictException(String message) Creates a new AliasConflictException with the specified detail message. -
Method Summary
Methods inherited from class Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
AliasConflictException
public AliasConflictException()Creates a new AliasConflictException with no detail message. -
AliasConflictException
Creates a new AliasConflictException with the specified detail message.- Parameters:
message- the detail message describing the conflict
-