Try<String> result = Try.of(businessService::businessMethod)
    .recover(throwable -> recoverFromException(throwable));