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 individualCSSToken
Classes 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 long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description TokenizeException()
Constructs aTokenizeException
with no detail message.TokenizeException(String message)
Constructs aTokenizeException
with the specified detail 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 theSerializable
Implementation 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 aTokenizeException
with no detail message.
-
TokenizeException
public TokenizeException(java.lang.String message)
Constructs aTokenizeException
with the specified detail message.- Parameters:
message
- the detail message.
-
-