Class Exceptions
java.lang.Object
com.thebuzzmedia.exiftool.commons.exceptions.Exceptions
Static Exceptions Utilities.
-
Method Summary
Modifier and TypeMethodDescriptionstatic RuntimeException
Coerce an unchecked Throwable to a RuntimeException: If the Throwable is an Error, throw it. If it is aRuntimeException
return it. Otherwise, throwIllegalStateException
.
-
Method Details
-
launderThrowable
Coerce an unchecked Throwable to a RuntimeException:- If the Throwable is an Error, throw it.
- If it is a
RuntimeException
return it. - Otherwise, throw
IllegalStateException
.
- Parameters:
t
- Original throwable.- Returns:
- Wrapped exception.
-