RuntimeError

data class RuntimeError(value: String, manimObject: MObject, lineNumber: Int) : ExecValue

Runtime Error Execution Value Class

Constructors

RuntimeError
Link copied to clipboard
fun RuntimeError(value: String, manimObject: MObject = EmptyMObject, lineNumber: Int)
: Creates a new Runtime Error for safe handling.

Functions

clone
Link copied to clipboard
open override fun clone(): ExecValue
compareTo
Link copied to clipboard
operator fun compareTo(other: Any): Int
'==','!
component1
Link copied to clipboard
operator fun component1(): String
component2
Link copied to clipboard
operator fun component2(): MObject
component3
Link copied to clipboard
operator fun component3(): Int
copy
Link copied to clipboard
fun copy(value: String, manimObject: MObject = EmptyMObject, lineNumber: Int): RuntimeError
div
Link copied to clipboard
operator fun div(other: ExecValue): ExecValue
'/'
equals
Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
open override fun hashCode(): Int
minus
Link copied to clipboard
operator fun minus(other: ExecValue): ExecValue
'-'
not
Link copied to clipboard
operator fun not(): Boolean
'!
plus
Link copied to clipboard
operator fun plus(other: ExecValue): ExecValue
'+'
times
Link copied to clipboard
operator fun times(other: ExecValue): ExecValue
'*'
toInterpolatedString
Link copied to clipboard
open fun toInterpolatedString(): String
toString
Link copied to clipboard
open override fun toString(): String

Properties

lineNumber
Link copied to clipboard
val lineNumber: Int
: Line number at error.
manimObject
Link copied to clipboard
open override var manimObject: MObject
: Manim Object corresponded to by the BoolValue.
name
Link copied to clipboard
open override val name: String
: String name of value.
value
Link copied to clipboard
open override val value: String
: Description of error.