public class MissingClassException extends XmlException
This exception is used to catch missing classes in
during cut and paste operations by MoMLParser.
| Red (cxh) |
| Red (cxh) |
| Constructor and Description |
|---|
MissingClassException(java.lang.String message,
java.lang.String missingClassName,
java.lang.String systemId,
int line,
int column)
Construct a new XML parsing exception.
}
/** Constructs an Exception with a detail message that includes the
name of the first argument.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
missingClassName()
Return the node name that caused the exception.
|
getCause, getColumn, getLine, getMessage, getSystemId, printStackTrace, printStackTrace, printStackTrace, stackTraceToStringpublic MissingClassException(java.lang.String message,
java.lang.String missingClassName,
java.lang.String systemId,
int line,
int column)
message - The error message from the parser.missingClassName - The name of the missing class.systemId - The URI of the entity containing the error.line - The line number where the error appeared.column - The column number where the error appeared.