blob: 939372b3af72cc3db3b3bde0df615a815586339e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
package com.c2kernel.scripting;
public class ScriptParsingException extends ScriptingEngineException {
/**
* Creates new <code>ScriptParsingException</code> without detail message.
*/
public ScriptParsingException() {
}
/**
* Constructs an <code>ScriptParsingException</code> with the specified detail message.
* @param msg the detail message.
*/
public ScriptParsingException(String msg) {
super(msg);
}
}
|