(no commit message)
[cdmlib.git] / cdmlib-model / src / main / java / eu / etaxonomy / cdm / strategy / exceptions / StringNotParsableException.java
1 /**
2 *
3 */
4 package eu.etaxonomy.cdm.strategy.exceptions;
5
6 /**
7 * @author a.mueller
8 *
9 */
10 public class StringNotParsableException extends Exception {
11
12 /**
13 *
14 */
15 public StringNotParsableException() {
16 super();
17 }
18
19 /**
20 * @param message
21 */
22 public StringNotParsableException(String message) {
23 super(message);
24 }
25
26 /**
27 * @param cause
28 */
29 public StringNotParsableException(Throwable cause) {
30 super(cause);
31 }
32
33 /**
34 * @param message
35 * @param cause
36 */
37 public StringNotParsableException(String message, Throwable cause) {
38 super(message, cause);
39 }
40
41 }