From 66a5d489277609c67f10fc0b1c2100d015ce9bb2 Mon Sep 17 00:00:00 2001 From: Thilo Schwarz Date: Tue, 10 Mar 2026 15:10:52 +0100 Subject: [PATCH] reduce code smells --- .../thischwa/cf/CloudflareNotFoundException.java | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/src/main/java/codes/thischwa/cf/CloudflareNotFoundException.java b/src/main/java/codes/thischwa/cf/CloudflareNotFoundException.java index ce744bc..c52e592 100644 --- a/src/main/java/codes/thischwa/cf/CloudflareNotFoundException.java +++ b/src/main/java/codes/thischwa/cf/CloudflareNotFoundException.java @@ -18,17 +18,4 @@ public class CloudflareNotFoundException extends CloudflareApiException { public CloudflareNotFoundException(String message) { super(message); } - - /** - * Constructs a new CloudflareNotFoundException with the specified detail message and cause. - * - * @param message the detail message, which provides additional context about the "not found" - * error encountered during interaction with the Cloudflare API. - * @param cause the cause of this exception, which is the underlying throwable that triggered this - * exception. - */ - public CloudflareNotFoundException(String message, Throwable cause) { - super(message, cause); - } - }