1 /*
2 * Copyright (C) 2007 ETH Zurich
3 *
4 * This file is part of Fosstrak (www.fosstrak.org).
5 *
6 * Fosstrak is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License version 2.1, as published by the Free Software Foundation.
9 *
10 * Fosstrak is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with Fosstrak; if not, write to the Free
17 * Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 * Boston, MA 02110-1301 USA
19 */
20
21 package org.fosstrak.epcis.queryclient;
22
23 /**
24 * Signals that the query client is not configured.
25 *
26 * @author Marco Steybe
27 */
28 public class QueryClientNotConfiguredException extends RuntimeException {
29
30 private static final long serialVersionUID = 1214211483696372668L;
31
32 public QueryClientNotConfiguredException() {
33 super();
34 }
35
36 public QueryClientNotConfiguredException(String msg) {
37 super(msg);
38 }
39
40 public QueryClientNotConfiguredException(Throwable e) {
41 super(e);
42 }
43
44 public QueryClientNotConfiguredException(String msg, Throwable e) {
45 super(msg, e);
46 }
47
48 }