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 convience 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)
|
PySyntaxError(java.lang.String s,
int line,
int column,
java.lang.String text,
java.lang.String filename,
boolean forceNewline)
|
Methods inherited from class java.lang.Throwable |
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, setStackTrace |
Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
forceNewline
public boolean forceNewline
PySyntaxError
public PySyntaxError(java.lang.String s,
int line,
int column,
java.lang.String text,
java.lang.String filename)
PySyntaxError
public PySyntaxError(java.lang.String s,
int line,
int column,
java.lang.String text,
java.lang.String filename,
boolean forceNewline)
Jython homepage