org.python.core
Class PySyntaxError
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.python.core.PyException
org.python.core.PySyntaxError
- All Implemented Interfaces:
- java.io.Serializable
public class PySyntaxError
- extends PyException
A convenience class for creating Syntax errors. Note that the
syntax error is still taken from Py.SyntaxError.
Generally subclassing from PyException is not the right way
of creating new exception classes.
- See Also:
- Serialized Form
Constructor Summary |
PySyntaxError(java.lang.String s,
int line,
int column,
java.lang.String text,
java.lang.String filename)
|
Methods inherited from class org.python.core.PyException |
doRaise, exceptionClassName, fillInStackTrace, isExceptionClass, isExceptionInstance, normalize, printStackTrace, printStackTrace, super__printStackTrace, toString, tracebackHere, tracebackHere |
Methods inherited from class java.lang.Throwable |
getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, setStackTrace |
Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
PySyntaxError
public PySyntaxError(java.lang.String s,
int line,
int column,
java.lang.String text,
java.lang.String filename)
Jython homepage