1 30 package com.genimen.djeneric.repository.exceptions; 31 32 import com.genimen.djeneric.repository.sqlparser.core.ParseException; 33 34 public class QbeFilterException extends ParseException 35 { 36 private static final long serialVersionUID = 3258125864838444599L; 37 String _propertyWithError = null; 38 39 public QbeFilterException() 40 { 41 super(); 42 } 43 44 public QbeFilterException(String message) 45 { 46 super(message); 47 } 48 49 public QbeFilterException(String message, String propertyWithError) 50 { 51 super(message); 52 _propertyWithError = propertyWithError; 53 } 54 55 public QbeFilterException(Exception x) 56 { 57 super(x); 58 } 59 60 public String getPropertyWithError() 61 { 62 return _propertyWithError; 63 } 64 65 public void setPropertyWithError(String string) 66 { 67 _propertyWithError = string; 68 } 69 70 } | Popular Tags |