KeyNotFoundException (class)
public KeyNotFoundException {inherits RuntimeException}
Package: CURL.LANGUAGE.EXCEPTIONS
Direct Known Subclasses: ArrayBoundsException

Signals a KeyNotFound exception.


Constructors
default:Creates a new KeyNotFoundException.
constructor public {KeyNotFoundException.default
obj:any = null,
key:any = null,
message:String
}

Properties
key:Contains the key that was not found, causing the exception to be thrown.
field public KeyNotFoundException.key:any
obj:Contains the object in which the key was not found, causing the exception to be thrown.
field public KeyNotFoundException.obj:any
Properties inherited from BasicThrowable: message, value

Methods
Methods inherited from Object: object-describe, object-describe-for-debugging, object-serialize



Constructor Details
default (constructor)
public {KeyNotFoundException.default
obj:any = null,
key:any = null,
message:String
}

Creates a new KeyNotFoundException.

obj: The object in which the key was not found, causing the exception to be thrown.
key: The key that was being searched for and was not found, causing the exception to be thrown.

Notes

See Exception.default for a description of the rest of the parameters.



Property Details
key (field)
public KeyNotFoundException.key:any

Contains the key that was not found, causing the exception to be thrown.

Notes

This field is often not filled in.


obj (field)
public KeyNotFoundException.obj:any

Contains the object in which the key was not found, causing the exception to be thrown.

Notes

This field is often not filled in.





Method Details