Revert "fix: Propagate exception in YUML plugin"

This reverts commit f704d3ef6558f1a4c82caebed5e4c6e7ba3bb825.
This commit is contained in:
1ambda 2016-11-07 14:22:30 +09:00
parent 1b7787f387
commit 73956e0736

View file

@ -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", e);
new RuntimeException("Failed to encode YUML markdown body");
}
StringBuilder mergedStyle = new StringBuilder();