1 19 20 21 package org.apache.cayenne.exp; 22 23 import org.apache.cayenne.CayenneRuntimeException; 24 25 31 public class ExpressionException extends CayenneRuntimeException { 32 protected String expressionString; 33 34 37 public ExpressionException() { 38 super(); 39 } 40 41 45 public ExpressionException(String msg) { 46 super(msg); 47 } 48 49 53 public ExpressionException(Throwable th) { 54 super(th); 55 } 56 57 62 public ExpressionException(String msg, Throwable th) { 63 super(msg, th); 64 } 65 66 71 public ExpressionException(String msg, String expressionString, Throwable th) { 72 super(msg, th); 73 this.expressionString = expressionString; 74 } 75 76 public String getExpressionString() { 77 return expressionString; 78 } 79 } 80 | Popular Tags |