@@ -29,15 +29,6 @@ public final class DataMapperException extends RuntimeException {
29
29
30
30
private static final long serialVersionUID = 1L ;
31
31
32
- /**
33
- * Constructs a new runtime exception with {@code null} as its detail message. The cause is not
34
- * initialized, and may subsequently be initialized by a call to {@link #initCause}.
35
- */
36
- public DataMapperException () {
37
- super ();
38
- }
39
-
40
-
41
32
/**
42
33
* Constructs a new runtime exception with the specified detail message. The cause is not
43
34
* initialized, and may subsequently be initialized by a call to {@link #initCause}.
@@ -48,34 +39,4 @@ public DataMapperException() {
48
39
public DataMapperException (final String message ) {
49
40
super (message );
50
41
}
51
-
52
- /**
53
- * Constructs a new runtime exception with the specified detail message and cause.
54
- * <p>
55
- * Note that the detail message associated with {@code cause} is <i>not</i> automatically
56
- * incorporated in this runtime exception's detail message.
57
- *
58
- * @param message the detail message (which is saved for later retrieval by the
59
- * {@link #getMessage()} method).
60
- * @param cause the cause (which is saved for later retrieval by the {@link #getCause()} method).
61
- * (A <tt>null</tt> value is permitted, and indicates that the cause is nonexistent or
62
- * unknown.)
63
- */
64
- public DataMapperException (final String message , final Throwable cause ) {
65
- super (message , cause );
66
- }
67
-
68
- /**
69
- * Constructs a new runtime exception with the specified cause and a detail message of
70
- * <tt>(cause==null ? null : cause.toString())</tt> (which typically contains the class and detail
71
- * message of <tt>cause</tt>). This constructor is useful for runtime exceptions that are little
72
- * more than wrappers for other throwables.
73
- *
74
- * @param cause the cause (which is saved for later retrieval by the {@link #getCause()} method).
75
- * (A <tt>null</tt> value is permitted, and indicates that the cause is nonexistent or
76
- * unknown.)
77
- */
78
- public DataMapperException (final Throwable cause ) {
79
- super (cause );
80
- }
81
42
}
0 commit comments