mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
fix: Propagate exception in YUML plugin
This commit is contained in:
parent
c656d08c4f
commit
1b7787f387
1 changed files with 1 additions and 1 deletions
|
|
@ -109,7 +109,7 @@ public class PegdownYumlPlugin extends Parser implements BlockPluginParser {
|
|||
try {
|
||||
encodedBody = URLEncoder.encode(inlined.toString(), "UTF-8");
|
||||
} catch (UnsupportedEncodingException e) {
|
||||
new RuntimeException("Failed to encode YUML markdown body");
|
||||
new RuntimeException("Failed to encode YUML markdown body", e);
|
||||
}
|
||||
|
||||
StringBuilder mergedStyle = new StringBuilder();
|
||||
|
|
|
|||
Loading…
Reference in a new issue