Print stack trace of exception causes in verbose mode

This commit is contained in:
AsamK 2021-09-08 20:38:24 +02:00
parent e3c37a0239
commit 2044a7d7a5
32 changed files with 66 additions and 60 deletions

View file

@ -42,12 +42,12 @@ public class AddDeviceCommand implements JsonRpcLocalCommand {
m.addDeviceLink(new URI(ns.getString("uri")));
} catch (IOException e) {
logger.error("Add device link failed", e);
throw new IOErrorException("Add device link failed");
throw new IOErrorException("Add device link failed", e);
} catch (URISyntaxException e) {
throw new UserErrorException("Device link uri has invalid format: " + e.getMessage());
} catch (InvalidKeyException e) {
logger.error("Add device link failed", e);
throw new UnexpectedErrorException("Add device link failed.");
throw new UnexpectedErrorException("Add device link failed.", e);
}
}
}