Package dev.voidframework.web.exception
Class RoutingException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
dev.voidframework.web.exception.RoutingException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
RoutingException.AppRouteDefinitionLoadFailure,RoutingException.BadRoutingArgument
All exceptions related to the routing feature are subclasses of
RoutingException.- Since:
- 1.0.0
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classException indicates that app defined route definition class can't be loaded.static classException indicates that an argument during the route registration is invalid. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedRoutingException(String message) Build a new instance.protectedRoutingException(String message, Throwable cause) Build a new instance. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
RoutingException
Build a new instance.- Parameters:
message- The detail messagecause- The root cause- Since:
- 1.0.0
-
RoutingException
Build a new instance.- Parameters:
message- The detail message- Since:
- 1.0.0
-