1 6 7 package javax.emb; 8 9 17 public class UnsupportedQueryLanguageException extends MediaException 18 { 19 22 public UnsupportedQueryLanguageException() 23 { 24 super(); 25 } 26 27 30 public UnsupportedQueryLanguageException(String message) 31 { 32 super(message); 33 } 34 35 38 public UnsupportedQueryLanguageException(String message, Throwable cause) 39 { 40 super(message, cause); 41 } 42 43 46 public UnsupportedQueryLanguageException(Throwable cause) 47 { 48 super(cause); 49 } 50 } | Popular Tags |