PipelineException

open class PipelineException(val richMessage: InlineContent, val code: Int) : Exception

An exception thrown during any stage of the pipeline.

Parameters

richMessage

formatted message to display. The actual Exception message is the plain text of it

code

error code. If the program is running in strict mode and thus is killed, it defines the process exit code

Inheritors

Constructors

Link copied to clipboard
constructor(message: String, code: Int)
constructor(richMessage: InlineContent, code: Int)

Properties

Link copied to clipboard
open val cause: Throwable?
Link copied to clipboard
val code: Int
Link copied to clipboard
open val message: String?
Link copied to clipboard