1 48 49 package org.jpublish.action; 50 51 import org.jpublish.JPublishRuntimeException; 52 53 58 59 public class ScriptExecutionException extends JPublishRuntimeException { 60 61 private String scriptPath; 62 63 69 70 public ScriptExecutionException(String message, String scriptPath) { 71 this(message, null, scriptPath); 72 } 73 74 81 82 public ScriptExecutionException(String message, Throwable error, 83 String scriptPath) { 84 super(message, error); 85 this.scriptPath = scriptPath; 86 } 87 88 93 94 public String getScriptPath() { 95 return scriptPath; 96 } 97 98 } 99 | Popular Tags |