mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-11 11:55:03 -05:00
21b5dc3fab
* added Preferences Wrapper (Map, List)
25 lines
382 B
Java
25 lines
382 B
Java
|
|
package net.sourceforge.tuned;
|
|
|
|
|
|
public class ExceptionUtil {
|
|
|
|
public static Throwable getRootCause(Throwable t) {
|
|
while (t.getCause() != null) {
|
|
t = t.getCause();
|
|
}
|
|
|
|
return t;
|
|
}
|
|
|
|
|
|
public static RuntimeException asRuntimeException(Throwable t) {
|
|
if (t instanceof RuntimeException) {
|
|
return (RuntimeException) t;
|
|
}
|
|
|
|
return new RuntimeException(t);
|
|
}
|
|
|
|
}
|