Class UncheckedException

All Implemented Interfaces:
Serializable

public final class UncheckedException extends RuntimeException
A wrapper exception that wraps checked exceptions into a runtime exception, so that it could be thrown from a non-throwing call sites.

If this exception is thrown, it should be properly handled later on, propagating a cause of UncheckedException based on application logic

See Also: