diff --git a/easypoi-base/src/main/java/cn/afterturn/easypoi/util/PoiReflectorUtil.java b/easypoi-base/src/main/java/cn/afterturn/easypoi/util/PoiReflectorUtil.java index 78a1e29..917565d 100644 --- a/easypoi-base/src/main/java/cn/afterturn/easypoi/util/PoiReflectorUtil.java +++ b/easypoi-base/src/main/java/cn/afterturn/easypoi/util/PoiReflectorUtil.java @@ -309,7 +309,7 @@ public final class PoiReflectorUtil { Method method = setMethods.get(propertyName); if (method == null) { throw new RuntimeException( - "There is no getter for property named '" + propertyName + "' in '" + type + "'"); + "There is no setter for property named '" + propertyName + "' in '" + type + "'"); } return method; }