Package Torello.Browser
Class BrowserErrorException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- Torello.Browser.BrowserErrorException
-
- All Implemented Interfaces:
java.io.Serializable
public class BrowserErrorException extends java.lang.RuntimeException
- See Also:
- Serialized Form
Hi-Lited Source-Code:- View Here: Torello/Browser/BrowserErrorException.java
- Open New Browser-Tab: Torello/Browser/BrowserErrorException.java
File Size: 674 Bytes Line Count: 22 '\n' Characters Found
-
-
Field Summary
Fields Modifier and Type Field BrowserErrorbrowserErrorprotected static longserialVersionUID
-
Constructor Summary
Constructors Constructor BrowserErrorException(Promise<?> promise, BrowserError browserError)
-
-
-
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;
-
browserError
public final BrowserError browserError
- Code:
- Exact Field Declaration Expression:
public final BrowserError browserError;
-
-
Constructor Detail
-
BrowserErrorException
public BrowserErrorException(Promise<?> promise, BrowserError browserError)
-
-