...
Code Block | ||
---|---|---|
| ||
try { … } catch (Exception e) { log.error("Could not do whatever I wanted to do!", e); } |
Of course you still can use parameters as long as the exception is the last param:
...
...
Code Block | ||
---|---|---|
| ||
try { … } catch (Exception e) { log.error("Could not do whatever I wanted to do!", e); } |
Of course you still can use parameters as long as the exception is the last param:
...