001 package railo.runtime.interpreter; 002 003 import railo.runtime.exp.ExpressionException; 004 005 /** 006 * 007 */ 008 public final class InterpreterException extends ExpressionException { 009 010 /* * 011 * constructor of the Exception 012 * @param e 013 * / 014 public InterpreterException(Throwable e) { 015 super(e); 016 }*/ 017 018 /** 019 * constructor of the Exception 020 * @param message 021 * @param detail 022 */ 023 public InterpreterException(String message, String detail) { 024 super(message, detail); 025 } 026 027 /** 028 * constructor of the Exception 029 * @param message 030 */ 031 public InterpreterException(String message) { 032 super(message); 033 } 034 035 }