updated CDMServer and corresponding test files to use dbunit datasets with the possib...
[taxeditor.git] / eu.etaxonomy.taxeditor.remoting / src / test / java / eu / etaxonomy / taxeditor / exception / CDMServerException.java
1 // $Id$
2 /**
3 * Copyright (C) 2014 EDIT
4 * European Distributed Institute of Taxonomy
5 * http://www.e-taxonomy.eu
6 *
7 * The contents of this file are subject to the Mozilla Public License Version 1.1
8 * See LICENSE.TXT at the top of this package for the full license terms.
9 */
10 package eu.etaxonomy.taxeditor.exception;
11
12 /**
13 * @author cmathew
14 * @date 23 Sep 2014
15 *
16 */
17 public class CDMServerException extends Exception {
18
19 public CDMServerException(String message) {
20 super(message);
21 }
22
23 public CDMServerException(Exception e) {
24 super(e);
25 }
26
27 public CDMServerException(String message,Exception e) {
28 super(message,e);
29 }
30
31 }