Package me.nabdev.pathfinding.structures
Class ImpossiblePathException
java.lang.Object
java.lang.Throwable
java.lang.Exception
me.nabdev.pathfinding.structures.ImpossiblePathException
- All Implemented Interfaces:
Serializable
An exception that is thrown when a path is impossible to find for various
reasons.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionImpossiblePathException
(String message) Creates a new ImpossiblePathException with the given message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ImpossiblePathException
Creates a new ImpossiblePathException with the given message.- Parameters:
message
- The message to be displayed when the exception is thrown.
-