Class IndexError

IndexError is a subclass of Exception that is raised when attempting to access an index that is out-of-bounds (too low or too high, after accounting for negative wraparound).

class IndexError < Exception
{
    # From Exception
    0 var @message: String
    0 var @traceback: List[String]
}

constructor(message: String): IndexError