public static class ErrorManager.ErrorEntry
extends java.lang.Object
implements java.io.Serializable
| Modifier and Type | Field and Description |
|---|---|
int |
num
Error number.
|
boolean |
prefix
Determines if the prefix should be displayed for the error message.
|
java.lang.String |
text
Error text.
|
| Constructor and Description |
|---|
ErrorEntry(int num,
java.lang.String text)
Construct an instance.
|
ErrorEntry(int num,
java.lang.String text,
boolean prefix)
Construct an instance.
|
public final int num
public final java.lang.String text
public final boolean prefix
public ErrorEntry(int num,
java.lang.String text)
num - The error number.text - The text of the error message.public ErrorEntry(int num,
java.lang.String text,
boolean prefix)
num - The error number.text - The text of the error message.prefix - Determines if the prefix should be displayed for the error message.