Class RuntimeError

RuntimeError is a subclass of Exception that is raised when the recursion limit is exceeded, or when trying to modify a Hash while iterating over it.

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

constructor(message: String): RuntimeError