Don't throw a ParameterException for a regular exception.

This commit is contained in:
sk89q 2014-06-28 17:32:25 -07:00
parent 3750190f2c
commit c7988c7ad9

View File

@ -178,7 +178,7 @@ public class BindingHelper implements Binding {
} else if (e.getCause() instanceof CommandException) {
throw (CommandException) e.getCause();
}
throw new ParameterException(e.getCause());
throw new RuntimeException(e.getCause());
}
}