summaryrefslogtreecommitdiff
path: root/source/com/c2kernel/scripting/ScriptingEngineException.java
blob: ab8383c3b63f1a7526f814a2f39e48e861c25dcb (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);
    }
}