Fix throwing uncaught exceptions in AsyncCommandBuilder.

This commit is contained in:
wizjany 2019-05-13 17:22:35 -04:00
parent 93dd956bae
commit 9a913a93f6

View File

@ -144,6 +144,7 @@ public final class AsyncCommandBuilder<T> {
if (exceptionConverter != null) {
try {
exceptionConverter.convert(orig);
throw orig;
} catch (CommandException converted) {
Component message;