15
15
*/
16
16
package no .digipost ;
17
17
18
- import no .digipost .function .*;
19
-
18
+ import no .digipost .function .ThrowingBiConsumer ;
19
+ import no .digipost .function .ThrowingBiFunction ;
20
+ import no .digipost .function .ThrowingConsumer ;
21
+ import no .digipost .function .ThrowingFunction ;
22
+ import no .digipost .function .ThrowingRunnable ;
23
+ import no .digipost .function .ThrowingSupplier ;
24
+
25
+ import java .io .IOException ;
26
+ import java .io .UncheckedIOException ;
20
27
import java .util .function .Consumer ;
21
28
import java .util .function .Function ;
22
29
import java .util .stream .Stream ;
23
30
31
+ import static no .digipost .DiggBase .friendlyName ;
32
+
24
33
public final class DiggExceptions {
25
34
26
35
/**
@@ -35,16 +44,71 @@ public static Stream<Throwable> causalChainOf(Throwable t) {
35
44
return causes .build ();
36
45
}
37
46
47
+ /**
48
+ * Generate a concise description of an exception/throwable
49
+ * containing the {@link DiggBase#friendlyName(Class) "friendly name"}
50
+ * of the exception's type, and its {@link Throwable#getMessage() message}.
51
+ *
52
+ * @param t the exception/throwable
53
+ *
54
+ * @return the description
55
+ */
38
56
public static String exceptionNameAndMessage (Throwable t ) {
39
- return t .getClass (). getSimpleName ( ) + ": '" + t .getMessage () + "'" ;
57
+ return friendlyName ( t .getClass ()) + ": '" + t .getMessage () + "'" ;
40
58
}
41
59
60
+
61
+ /**
62
+ * Utility for acquiring a {@link RuntimeException} from any {@link Throwable}.
63
+ * This method is appropriate to use when you have caught an exception which you have no
64
+ * ability to handle, and you need to just throw it from a context where you are
65
+ * not allowed to.
66
+ * <p>
67
+ * If you want to add more context to the thrown exception (which you probably should), consider
68
+ * using {@link #asUnchecked(Throwable, String)} or {@link #asUnchecked(Throwable, Function)}.
69
+ *
70
+ * @param t the exception (Throwable)
71
+ *
72
+ * @return a new {@link RuntimeException} which has the given exception as its {@link Throwable#getCause() cause},
73
+ * or {@code t} itself casted to {@code RuntimeException} if possible
74
+ */
42
75
public static RuntimeException asUnchecked (Throwable t ) {
43
- return asUnchecked (t , DiggExceptions ::exceptionNameAndMessage );
76
+ return t instanceof RuntimeException ? (RuntimeException ) t : asUnchecked (t , DiggExceptions ::exceptionNameAndMessage );
77
+ }
78
+
79
+
80
+ /**
81
+ * Utility for acquiring a {@link RuntimeException} with a custom message from any {@link Throwable}.
82
+ * The result from this method will <em>always</em> be a new exception instance.
83
+ *
84
+ * @param <X> the type of the given exception
85
+ * @param t the exception (Throwable)
86
+ * @param messageCreator a function which returns the message for the new exception
87
+ *
88
+ * @return a new {@link RuntimeException} which has the result from the {@code messageCreator} function as its
89
+ * {@link Throwable#getMessage() message}, and the given exception as its {@link Throwable#getCause() cause}
90
+ */
91
+ public static <X extends Throwable > RuntimeException asUnchecked (X t , Function <? super X , String > messageCreator ) {
92
+ return asUnchecked (t , messageCreator .apply (t ));
44
93
}
45
94
46
- public static <X extends Throwable > RuntimeException asUnchecked (X t , Function <? super X , String > message ) {
47
- return t instanceof RuntimeException ? (RuntimeException ) t : new RuntimeException (message .apply (t ), t );
95
+
96
+ /**
97
+ * Utility for acquiring a {@link RuntimeException} with a custom message from any {@link Throwable}.
98
+ * The result from this method will <em>always</em> be a new exception instance.
99
+ *
100
+ * @param t the exception (Throwable)
101
+ * @param message the message for the new exception
102
+ *
103
+ * @return a new {@link RuntimeException} which has the given {@code message},
104
+ * and the given exception as its {@link Throwable#getCause() cause}
105
+ */
106
+ public static RuntimeException asUnchecked (Throwable t , String message ) {
107
+ if (t instanceof IOException ) {
108
+ return new UncheckedIOException (message , (IOException ) t );
109
+ } else {
110
+ return new RuntimeException (message , t );
111
+ }
48
112
}
49
113
50
114
/**
0 commit comments