source:
javavenv/src/main/java/geniusweb/javavenv/PythonError.java@
1
Last change on this file since 1 was 1, checked in by , 3 years ago | |
---|---|
File size: 344 bytes |
Line | |
---|---|
1 | package geniusweb.javavenv; |
2 | |
3 | /** |
4 | * Contains an error message text from the python interpreter |
5 | */ |
6 | public class PythonError extends Exception { |
7 | |
8 | private static final long serialVersionUID = 4602563752640840127L; |
9 | |
10 | public PythonError(String msg) { |
11 | super(msg); |
12 | } |
13 | |
14 | public PythonError(String msg, Throwable cause) { |
15 | super(msg, cause); |
16 | } |
17 | |
18 | } |
Note:
See TracBrowser
for help on using the repository browser.