1 /*** 2 * 3 */ 4 package hu.elte.tribus.services; 5 6 /*** 7 * @author kocka 8 * 9 */ 10 public class QueryException extends Exception { 11 12 public QueryException() { 13 super(); 14 // TODO Auto-generated constructor stub 15 } 16 17 public QueryException(String message, Throwable cause) { 18 super(message, cause); 19 // TODO Auto-generated constructor stub 20 } 21 22 public QueryException(String message) { 23 super(message); 24 // TODO Auto-generated constructor stub 25 } 26 27 public QueryException(Throwable cause) { 28 super(cause); 29 // TODO Auto-generated constructor stub 30 } 31 32 }