]> gerrit.simantics Code Review - simantics/python.git/blob - org.simantics.pythonlink/src/org/simantics/pythonlink/PythonException.java
Get Python traceback output in the messages of exceptions from the pythonlink feature.
[simantics/python.git] / org.simantics.pythonlink / src / org / simantics / pythonlink / PythonException.java
1 package org.simantics.pythonlink;\r
2 \r
3 public class PythonException extends RuntimeException {\r
4         private static final long serialVersionUID = 3015300166106850889L;\r
5         \r
6         public PythonException() {\r
7                 super();\r
8         }\r
9         \r
10         public PythonException(String message) {\r
11                 super(message);\r
12         }\r
13         \r
14         public PythonException(String message, Throwable cause) {\r
15                 super(message, cause);\r
16         }\r
17         \r
18         public PythonException(Throwable cause) {\r
19                 super(cause);\r
20         }\r
21 }\r