public class Invalid_Map_Syntax extends Exception
PVL_to_DB
,
Serialized FormModifier and Type | Field and Description |
---|---|
static String |
ID
Class name and version identification.
|
Constructor and Description |
---|
Invalid_Map_Syntax(String message)
Constructs an Invalid_Map_Syntax exception with the
specified detail message.
|
Invalid_Map_Syntax(String message,
String reference)
Constructs an Invalid_Map_Syntax exception with
the specified detail message and reference.
|
Invalid_Map_Syntax(String message,
String reference,
Parameter parameter)
Constructs an Invalid_Map_Syntax exception with
the specified detail message, reference, and map parameter.
|
Modifier and Type | Method and Description |
---|---|
void |
Parameter(Parameter parameter)
Saves the pathname and value of the parameter.
|
String |
Pathname()
Gets the pathname of the map parameter with the invalid syntax.
|
String |
Reference()
Gets the reference with the invalid syntax.
|
String |
Value()
Gets the value of the map parameter with the invalid syntax.
|
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
public static final String ID
public Invalid_Map_Syntax(String message)
The exception's Reference, Pathname and Value will be null.
message
- The detail message; retrievable by the
Throwable.getMessage()
method.public Invalid_Map_Syntax(String message, String reference)
The exception's Pathname and Value will be null.
message
- The detail message; retrievable by the
Throwable.getMessage()
method.reference
- The reference String that contains the invalid
syntax; retrievable by the Reference()
method.public Invalid_Map_Syntax(String message, String reference, Parameter parameter)
message
- The detail message; retrievable by the
Throwable.getMessage()
method.reference
- The reference String that contains the invalid
syntax; retrievable by the Reference()
method.parameter
- The map parameter that contains the invalid
syntax.public String Reference()
public String Pathname()
public String Value()
public void Parameter(Parameter parameter)
If the parameter is an Aggregate, the value will be null. If the parameter Value is an Array, the full reprepresentation of the Array will be saved.
parameter
- The map parameter that contains the invalid
syntax.