Uses of Enum Class
io.adamantic.quicknote.exceptions.ExceptionCode
Packages that use ExceptionCode
-
Uses of ExceptionCode in io.adamantic.quicknote.exceptions
Methods in io.adamantic.quicknote.exceptions that return ExceptionCodeModifier and TypeMethodDescriptionstatic ExceptionCodeReturns the enum constant of this class with the specified name.static ExceptionCode[]ExceptionCode.values()Returns an array containing the constants of this enum class, in the order they are declared.Constructors in io.adamantic.quicknote.exceptions with parameters of type ExceptionCodeModifierConstructorDescriptionConstructs a new business exception with the given code.BusinessException(ExceptionCode code, String message) Constructs a new business exception with the given code and message.BusinessException(ExceptionCode code, String message, Throwable cause) Constructs a new business exception with the given code, message and cause.SystemException(ExceptionCode code) Constructs a new system exception with the given code.SystemException(ExceptionCode code, String message) Constructs a new system exception with the given code and message.SystemException(ExceptionCode code, String message, Throwable cause) Constructs a new system exception with the given code, message and cause.