Package Torello.CSS
Class TokenizeException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- Torello.CSS.TokenizeException
-
- All Implemented Interfaces:
java.io.Serializable
public class TokenizeException extends java.lang.RuntimeException
This exception will be thrown by the Static-Build Methods offered by each of the individualCSSTokenClasses if the User provides faultyString-Input.- See Also:
- Serialized Form
Hi-Lited Source-Code:- View Here: Torello/CSS/TokenizeException.java
- Open New Browser-Tab: Torello/CSS/TokenizeException.java
File Size: 1,939 Bytes Line Count: 49 '\n' Characters Found
-
-
Field Summary
Fields Modifier and Type Field protected static longserialVersionUID
-
Constructor Summary
Constructors Constructor TokenizeException()TokenizeException(String message)
-
-
-
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.- See Also:
- Constant Field Values
- Code:
- Exact Field Declaration Expression:
protected static final long serialVersionUID = 1;
-
-
Constructor Detail
-
TokenizeException
public TokenizeException()
Constructs aTokenizeExceptionwith no detail message.
-
TokenizeException
public TokenizeException(java.lang.String message)
Constructs aTokenizeExceptionwith the specified detail message.- Parameters:
message- the detail message.
-
-