001package Torello.Browser;
002
003/**
004 * If an attempt is made to look up the array index of a type or event class field which is 
005 * does not exist in the nested type, then this exception shall throw.
006 */
007public class UnknownPropertyException extends RuntimeException
008{
009    /** <EMBED CLASS='external-html' DATA-FILE-ID=SVUIDEX> */
010    protected static final long serialVersionUID = 1;
011
012    /**
013     * Constructs an {@code UnknownPropertyException} with the specified detail message.
014     * @param fieldName the name of the property that was not recognized.
015     */
016    public UnknownPropertyException(String fieldName)
017    { super("The property name '" + fieldName + "' is not recognized for this class."); }
018}