1 23 24 package org.apache.slide.search; 25 26 33 public class BadQueryException extends SearchException { 34 35 37 38 43 public BadQueryException (String message) { 44 super (message); 45 } 46 47 52 public BadQueryException (Throwable t) { 53 this ("", t); 54 } 55 56 57 63 public BadQueryException (String message, Throwable t) { 64 super (message, t); 65 } 66 } 67 | Popular Tags |