source: javavenv/src/main/java/geniusweb/javavenv/PythonError.java@ 1

Last change on this file since 1 was 1, checked in by bart, 3 years ago

First public version.

File size: 344 bytes
Line 
1package geniusweb.javavenv;
2
3/**
4 * Contains an error message text from the python interpreter
5 */
6public 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.