1 56 57 package org.objectstyle.cayenne.exp; 58 59 import org.objectstyle.cayenne.CayenneRuntimeException; 60 61 67 public class ExpressionException extends CayenneRuntimeException { 68 protected String expressionString; 69 70 73 public ExpressionException() { 74 super(); 75 } 76 77 81 public ExpressionException(String msg) { 82 super(msg); 83 } 84 85 89 public ExpressionException(Throwable th) { 90 super(th); 91 } 92 93 98 public ExpressionException(String msg, Throwable th) { 99 super(msg, th); 100 } 101 102 107 public ExpressionException(String msg, String expressionString, Throwable th) { 108 super(msg, th); 109 this.expressionString = expressionString; 110 } 111 112 public String getExpressionString() { 113 return expressionString; 114 } 115 } 116 | Popular Tags |