1 24 package org.objectweb.jalisto.se.query.exception; 25 26 import org.objectweb.jalisto.se.exception.JalistoException; 27 28 public class QueryEngineException extends JalistoException { 29 public QueryEngineException() { 30 } 31 32 public QueryEngineException(String s) { 33 super(s); 34 } 35 36 public QueryEngineException(String s, Throwable throwable) { 37 super(s, throwable); 38 } 39 40 public QueryEngineException(Throwable throwable) { 41 super(throwable); 42 } 43 } 44 | Popular Tags |