package com.c2kernel.scripting; public class ScriptingEngineException extends java.lang.Exception { /** * Creates new sciptingEngineException without detail message. */ public ScriptingEngineException() { } /** * Constructs an sciptingEngineException with the specified detail message. * @param msg the detail message. */ public ScriptingEngineException(String msg) { super(msg); } }