Eclipse-PyUML/pyUml/src/pyUML/exceptions/PyUMLParseException.java

19 lines
406 B
Java
Executable File

package pyUML.exceptions;
/**
*
* This exception is thrown when the parser returns an error;
* When parsing (in python only because of syntax errors),
* the user must fix the problem manually before pyUML can continue.
*
*/
public class PyUMLParseException extends Exception {
public PyUMLParseException(String message) {
super(message);
}
private static final long serialVersionUID = 1L;
}