Package-level declarations

Types

Link copied to clipboard
open class ReplException(message: String, cause: Throwable? = null) : Exception

Base class for all kinds of exceptions that may happen in REPL

Link copied to clipboard

Exceptions may implement this interface to add the cause while rendered by ReplException

Link copied to clipboard
open class ReplMessageOnlyException(message: String, cause: Throwable? = null) : ReplException

The kind of exception that renders only its message, no stacktrace or cause

Link copied to clipboard

This exception will never be wrapped into another ReplException

Link copied to clipboard

Functions

Link copied to clipboard
fun Throwable.messageAndStackTrace(withMessage: Boolean = true): String
Link copied to clipboard