Class UnknownViewException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
tech.guilhermekaua.spigotboot.inventoryapi.exception.UnknownViewException
- All Implemented Interfaces:
Serializable
Thrown when a view is opened (through ViewService.open or context navigation)
but the target view class is not registered.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionUnknownViewException(String message) Creates the exception with a detail message.UnknownViewException(String message, Throwable cause) Creates the exception with a detail message and cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
UnknownViewException
Creates the exception with a detail message.- Parameters:
message- the detail message
-
UnknownViewException
Creates the exception with a detail message and cause.- Parameters:
message- the detail messagecause- the underlying cause
-