Package-level declarations

Types

Link copied to clipboard
abstract class AbstractM8tyException(val message: String, val code: String, val httpStatus: HttpStatus) : RuntimeException

Represents an abstract m8ty exception.

Link copied to clipboard
class InternalErrorException(val message: String, val code: String, val httpStatus: HttpStatus) : AbstractM8tyException

Represents an internal error exception.

Link copied to clipboard
class M8tyException(val message: String, val code: String, val httpStatus: HttpStatus) : AbstractM8tyException

Represents the common exception of the m8ty system.

Link copied to clipboard
class ObjectNotFoundException(val message: String, val code: String, val httpStatus: HttpStatus) : AbstractM8tyException

Represents an exception thrown when an object is not found.

Link copied to clipboard
class RejectedException(val message: String, val code: String, val httpStatus: HttpStatus) : AbstractM8tyException

Represents an exception that occurs when a request is rejected.

Link copied to clipboard
class UserNotFoundException(val message: String, val code: String, val httpStatus: HttpStatus) : AbstractM8tyException

Represents an exception that indicates that a user is not found.

Link copied to clipboard
class WebFormRequiredException(val locationUrl: String, val message: String, val code: String, val httpStatus: HttpStatus) : AbstractM8tyException

Exception that is thrown when a web form is required.