以下のように記述する。

try {
    処理...
} catch (Exception e) {
    
log.error(e.getMessage(), e);
    throw new RuntimeException(e.getMessage());
}