1 18 package org.apache.beehive.netui.script; 19 20 22 24 26 29 public class ExpressionUpdateException 30 extends ExpressionEvaluationException { 31 32 35 public ExpressionUpdateException() { 36 super(); 37 } 38 39 47 public ExpressionUpdateException(String message, String expression, Throwable cause) { 48 super(message, expression, cause); 49 } 50 51 58 public ExpressionUpdateException(String message, String expression) { 59 super(message, expression); 60 } 61 62 71 public Object getUpdateValue() { 72 return null; 73 } 74 } 75 | Popular Tags |