This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-imaging.git
commit 770c251a53466410ddbd30f4bb39c9a1e948a70f Author: Gary Gregory <[email protected]> AuthorDate: Sat Jan 3 11:15:10 2026 -0500 Javadoc --- .../java/org/apache/commons/imaging/ImagingOverflowException.java | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/main/java/org/apache/commons/imaging/ImagingOverflowException.java b/src/main/java/org/apache/commons/imaging/ImagingOverflowException.java index cc81f381..adb2c3fb 100644 --- a/src/main/java/org/apache/commons/imaging/ImagingOverflowException.java +++ b/src/main/java/org/apache/commons/imaging/ImagingOverflowException.java @@ -17,10 +17,18 @@ package org.apache.commons.imaging; +/** + * Exception thrown when an overflow occurs during imaging operations. + */ public class ImagingOverflowException extends ImagingException { private static final long serialVersionUID = 1L; + /** + * Constructs a new imaging overflow exception with the specified message. + * + * @param message the detail message. + */ public ImagingOverflowException(final String message) { super(message); }
