InvalidColorRGBValues

data class InvalidColorRGBValues(val r: Int, val g: Int, val b: Int, val source: Expression) : SemanticError

SemanticError thrown when a Colour's RGB values are invalid.

Parameters

r

The colour's RED value.

g

The colour's GREEN value.

b

The colour's BLUE value.

source

The Expression that contains the invalid colours.

Constructors

Link copied to clipboard
constructor(r: Int, g: Int, b: Int, source: Expression)

Properties

Link copied to clipboard
val b: Int
Link copied to clipboard
val g: Int
Link copied to clipboard
Link copied to clipboard
val r: Int
Link copied to clipboard