Last change
on this file since 6 was 6, checked in by bart, 3 years ago |
Reduced memory need of websockets.
|
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.