TypeError

class TypeError(    message: String? = null,     cause: Throwable? = null,     val contexts: Array<ExecutionContext>,     val expectedType: TypeError.Expected,     val culprit: <ERROR CLASS>,     val extraData: <ERROR CLASS>? = null) : LogicError

The type error occurs when something is not of Expected type

Author

Enrico

Parameters

message

the detail message string.

cause

the cause of this exception.

contexts

a stack of contexts localising the exception

expectedType

The type expected, that wouldn't have raised the error

culprit

The value not respecting expectedType

extraData

The possible extra data to be carried with the error

Constructors

Link copied to clipboard
fun TypeError(    message: String? = null,     cause: Throwable? = null,     context: ExecutionContext,     expectedType: TypeError.Expected,     culprit: <ERROR CLASS>,     extraData: <ERROR CLASS>? = null)
Link copied to clipboard
fun TypeError(    message: String? = null,     cause: Throwable? = null,     contexts: Array<ExecutionContext>,     expectedType: TypeError.Expected,     culprit: <ERROR CLASS>,     extraData: <ERROR CLASS>? = null)

Types

Link copied to clipboard
object Companion
Link copied to clipboard
enum Expected : Enum<TypeError.Expected>

A class describing the expected type whose absence caused the error

Functions

Link copied to clipboard
open override fun pushContext(newContext: ExecutionContext): TypeError
Link copied to clipboard
open override fun toString(): String
Link copied to clipboard
open override fun updateContext(newContext: ExecutionContext, index: Int): TypeError

Creates a new exception instance with the context with in position index updated to newContext. Subclasses should override this method and return the correct instance.

Link copied to clipboard
open override fun updateLastContext(newContext: ExecutionContext): TypeError

Properties

Link copied to clipboard
val context: ExecutionContext
Link copied to clipboard
val contexts: Array<ExecutionContext>
Link copied to clipboard
val culprit: <ERROR CLASS>
Link copied to clipboard
val errorStruct: <ERROR CLASS>

The error Struct as described in Prolog standard: error(error_type, error_extra)

Link copied to clipboard
val expectedType: TypeError.Expected
Link copied to clipboard
open val extraData: <ERROR CLASS>? = null
Link copied to clipboard
val logicStackTrace: List<<ERROR CLASS>>

The exception stacktrace; shorthand for context.prologStackTrace

Link copied to clipboard
open override val type: <ERROR CLASS>