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