1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18 | package Torello.Browser;
/**
* If an attempt is made to look up the array index of a type or event class field which is
* does not exist in the nested type, then this exception shall throw.
*/
public class UnknownPropertyException extends RuntimeException
{
/** <EMBED CLASS='external-html' DATA-FILE-ID=SVUIDEX> */
protected static final long serialVersionUID = 1;
/**
* Constructs an {@code UnknownPropertyException} with the specified detail message.
* @param fieldName the name of the property that was not recognized.
*/
public UnknownPropertyException(String fieldName)
{ super("The property name '" + fieldName + "' is not recognized for this class."); }
}
|