Merge branch 'develop' into remoting-4.0
[taxeditor.git] / eu.etaxonomy.taxeditor.cdmlib / src / main / java / eu / etaxonomy / taxeditor / remoting / CdmRemotingException.java
1 package eu.etaxonomy.taxeditor.remoting;
2
3 public class CdmRemotingException extends RuntimeException {
4
5 /**
6 *
7 */
8 private static final long serialVersionUID = -560332689478356360L;
9
10 public CdmRemotingException(String message) {
11 super(message);
12 }
13
14 public CdmRemotingException(Exception exception) {
15 super(exception);
16 }
17
18 }