Package Torello.Browser
Class UnknownPropertyException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- Torello.Browser.UnknownPropertyException
-
- All Implemented Interfaces:
java.io.Serializable
public class UnknownPropertyException extends java.lang.RuntimeException
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.- See Also:
- Serialized Form
Hi-Lited Source-Code:- View Here: Torello/Browser/UnknownPropertyException.java
- Open New Browser-Tab: Torello/Browser/UnknownPropertyException.java
File Size: 705 Bytes Line Count: 18 '\n' Characters Found
-
-
Field Summary
Serializable ID Modifier and Type Field protected static longserialVersionUID
-
Constructor Summary
Constructors Constructor UnknownPropertyException(String fieldName)
-
-
-
Field Detail
-
serialVersionUID
protected static final long serialVersionUID
This fulfils the SerialVersion UID requirement for all classes that implement Java'sinterface java.io.Serializable. Using theSerializableImplementation offered by java is very easy, and can make saving program state when debugging a lot easier. It can also be used in place of more complicated systems like "hibernate" to store data as well.
Note that Java'sjava.lang.Exceptionandjava.lang.Errorclasses implement theSerializable interface, and a warning-free build expects this field be defined here.- See Also:
- Constant Field Values
- Code:
- Exact Field Declaration Expression:
protected static final long serialVersionUID = 1;
-
-
Constructor Detail
-
UnknownPropertyException
public UnknownPropertyException(java.lang.String fieldName)
Constructs anUnknownPropertyExceptionwith the specified detail message.- Parameters:
fieldName- the name of the property that was not recognized.
-
-