source: SRUCQIBridge/src/main/java/eu/clarin/sru/cqibridge/CqiClientException.java @ 2105

Last change on this file since 2105 was 2105, checked in by akislev, 12 years ago

This project provides a complete implementation of an SRU endpoint using a CQI server as a backend.

File size: 834 bytes
Line 
1/**
2 * This software is copyright (c) 2012 by
3 *  - Seminar fuer Sprachwissenschaft  (http://www.sfs.uni-tuebingen.de/)
4 * This is free software. You can redistribute it
5 * and/or modify it under the terms described in
6 * the GNU General Public License v3 of which you
7 * should have received a copy. Otherwise you can download
8 * it from
9 *
10 *   http://www.gnu.org/licenses/gpl-3.0.txt
11 *
12 * @copyright Seminar fuer Sprachwissenschaft (http://www.sfs.uni-tuebingen.de/)
13 *
14 * @license http://www.gnu.org/licenses/gpl-3.0.txt
15 *  GNU General Public License v3
16 */
17package eu.clarin.sru.cqibridge;
18
19public class CqiClientException extends Exception {
20
21    public CqiClientException(String message) {
22        super(message);
23    }
24
25    public CqiClientException(String message, Throwable cause) {
26        super(message, cause);
27    }
28}
Note: See TracBrowser for help on using the repository browser.