summaryrefslogtreecommitdiff
path: root/source/com/c2kernel/scripting/ScriptingEngineException.java
blob: 2c8128c932271929a4cdb7314aed6b8cb60b819a (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 ScriptingEngineException extends java.lang.Exception {
    
     /**
     * Creates new <code>sciptingEngineException</code> without detail message.
     */
    public ScriptingEngineException() {
    }

    /**
     * Constructs an <code>sciptingEngineException</code> with the specified detail message.
     * @param msg the detail message.
     */
    public ScriptingEngineException(String msg) {
        super(msg);
    }
}