1 18 package org.apache.beehive.netui.script; 19 20 22 24 26 29 public class IllegalExpressionException 30 extends RuntimeExpressionException { 31 32 private String expression = null; 33 34 37 public IllegalExpressionException() { 38 super(); 39 } 40 41 46 public IllegalExpressionException(String message) { 47 super(message); 48 } 49 50 55 public IllegalExpressionException(Throwable cause) { 56 super(cause); 57 } 58 59 65 public IllegalExpressionException(String message, Throwable cause) { 66 super(message, cause); 67 } 68 69 75 public IllegalExpressionException(String message, String expression) { 76 this(message); 77 this.expression = expression; 78 } 79 80 87 public IllegalExpressionException(String message, String expression, Throwable cause) { 88 this(message, cause); 89 this.expression = expression; 90 } 91 92 97 public String getExpression() { 98 return expression; 99 } 100 } 101 102 | Popular Tags |