Package-level declarations

Types

Link copied to clipboard
open class IssueException(msg: String, cause: Throwable? = null) : Throwable

Represents an internal exception for reporting issues.

Link copied to clipboard
open class UnknownException(msg: String, cause: Throwable? = null) : Throwable

UnknownException is a custom exception class that is used to handle unknown errors which can't be categorized as IssueException or WarningException.

Link copied to clipboard
open class WarningException(msg: String, cause: Throwable?) : Throwable

This class represents a user warning in the system. With this exception we want to message end user that this exception is fixable from the user side.