collapsed error clause
parent
6921ca9a42
commit
3c297ba18f
|
@ -85,10 +85,7 @@ public class DynamicRegistrationClientConfigurationService implements ClientConf
|
||||||
}
|
}
|
||||||
|
|
||||||
return clients.get(issuer);
|
return clients.get(issuer);
|
||||||
} catch (UncheckedExecutionException ue) {
|
} catch (UncheckedExecutionException | ExecutionException e) {
|
||||||
logger.warn("Unable to get client configuration", ue);
|
|
||||||
return null;
|
|
||||||
} catch (ExecutionException e) {
|
|
||||||
logger.warn("Unable to get client configuration", e);
|
logger.warn("Unable to get client configuration", e);
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue