Class Exceptions
java.lang.Object
com.thebuzzmedia.exiftool.commons.exceptions.Exceptions
Static Exceptions Utilities.
-
Method Summary
Modifier and TypeMethodDescriptionstatic RuntimeExceptionCoerce an unchecked Throwable to a RuntimeException: If the Throwable is an Error, throw it. If it is aRuntimeExceptionreturn 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
RuntimeExceptionreturn it. - Otherwise, throw
IllegalStateException.
- Parameters:
t- Original throwable.- Returns:
- Wrapped exception.
-