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