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
    public var @message: String
    public var @traceback: List[String]
}

constructor(message: String): IndexError