Mercurial > dive4elements > gnv-client
comparison gnv-artifacts/src/main/java/de/intevation/gnv/artifacts/services/MetaDataServiceException.java @ 1119:7c4f81f74c47
merged gnv-artifacts
author | Thomas Arendsen Hein <thomas@intevation.de> |
---|---|
date | Fri, 28 Sep 2012 12:14:00 +0200 |
parents | f953c9a559d8 |
children |
comparison
equal
deleted
inserted
replaced
1027:fca4b5eb8d2f | 1119:7c4f81f74c47 |
---|---|
1 /* | |
2 * Copyright (c) 2010 by Intevation GmbH | |
3 * | |
4 * This program is free software under the LGPL (>=v2.1) | |
5 * Read the file LGPL.txt coming with the software for details | |
6 * or visit http://www.gnu.org/licenses/ if it does not exist. | |
7 */ | |
8 | |
9 package de.intevation.gnv.artifacts.services; | |
10 | |
11 /** | |
12 * ExceprionClass for MetaDataServices. | |
13 * @author <a href="mailto:tim.englich@intevation.de">Tim Englich</a> | |
14 * | |
15 */ | |
16 public class MetaDataServiceException extends Exception { | |
17 | |
18 /** | |
19 * The UID of this Class | |
20 */ | |
21 private static final long serialVersionUID = -7489185270678994565L; | |
22 | |
23 /** | |
24 * Constructor | |
25 */ | |
26 public MetaDataServiceException() { | |
27 super(); | |
28 } | |
29 | |
30 /** | |
31 * Constructor | |
32 * @param arg0 | |
33 */ | |
34 public MetaDataServiceException(String arg0) { | |
35 super(arg0); | |
36 } | |
37 | |
38 /** | |
39 * Constructor | |
40 * @param arg0 | |
41 */ | |
42 public MetaDataServiceException(Throwable arg0) { | |
43 super(arg0); | |
44 } | |
45 | |
46 /** | |
47 * Constructor | |
48 * @param arg0 | |
49 * @param arg1 | |
50 */ | |
51 public MetaDataServiceException(String arg0, Throwable arg1) { | |
52 super(arg0, arg1); | |
53 } | |
54 | |
55 } | |
56 // vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 : |