diff --git a/src/main/java/sh/okx/rankup/text/pebble/DecimalFormatFilter.java b/src/main/java/sh/okx/rankup/text/pebble/DecimalFormatFilter.java index c02b220..ff7a5c5 100644 --- a/src/main/java/sh/okx/rankup/text/pebble/DecimalFormatFilter.java +++ b/src/main/java/sh/okx/rankup/text/pebble/DecimalFormatFilter.java @@ -28,7 +28,7 @@ public class DecimalFormatFilter implements Filter { return null; } if (!(input instanceof Number)) { - throw new PebbleException(null, "The input for the 'DecimalFormatFilter' filter has to be a number.", + throw new PebbleException(null, "The input for the 'DecimalFormatFilter' filter has to be a number: " + input, lineNumber, self.getName()); }