Remove AttachNotSupportedException constructor with the cause

This commit is contained in:
Yasumasa Suenaga 2026-01-22 11:18:43 +09:00
parent 8e3caabcf1
commit dc4825dba7

View File

@ -62,17 +62,4 @@ public class AttachNotSupportedException extends Exception {
super(s);
}
/**
* Constructs an <code>AttachNotSupportedException</code> with
* the specified cause.
*
* @param message the detail message.
* @param cause the cause of this exception.
*
* @since 27
*/
public AttachNotSupportedException(String message, Throwable cause) {
super(message, cause);
}
}