1 16 17 package org.springframework.scripting; 18 19 import org.springframework.core.NestedRuntimeException; 20 21 27 public class ScriptCompilationException extends NestedRuntimeException { 28 29 33 public ScriptCompilationException(String msg) { 34 super(msg); 35 } 36 37 43 public ScriptCompilationException(String msg, Throwable cause) { 44 super(msg, cause); 45 } 46 47 } 48 | Popular Tags |