From dc4825dba70a24b2606d76d500415319a25eefae Mon Sep 17 00:00:00 2001 From: Yasumasa Suenaga Date: Thu, 22 Jan 2026 11:18:43 +0900 Subject: [PATCH] Remove AttachNotSupportedException constructor with the cause --- .../tools/attach/AttachNotSupportedException.java | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/src/jdk.attach/share/classes/com/sun/tools/attach/AttachNotSupportedException.java b/src/jdk.attach/share/classes/com/sun/tools/attach/AttachNotSupportedException.java index 725db3e7732..050c1030bf6 100644 --- a/src/jdk.attach/share/classes/com/sun/tools/attach/AttachNotSupportedException.java +++ b/src/jdk.attach/share/classes/com/sun/tools/attach/AttachNotSupportedException.java @@ -62,17 +62,4 @@ public class AttachNotSupportedException extends Exception { super(s); } - /** - * Constructs an AttachNotSupportedException 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); - } - }