Class KeyError
KeyError
is a subclass of Exception
that is raised when trying to get an
item from a Hash
that does not exist.
class KeyError < Exception { # From Exception public var @message: String public var @traceback: List[String] }
KeyError
is a subclass of Exception
that is raised when trying to get an
item from a Hash
that does not exist.
class KeyError < Exception { # From Exception public var @message: String public var @traceback: List[String] }
constructor(message: String): KeyError