Removed obsolete constructors at the exceptions and Update Javadoc files with latest generated content.

This commit is contained in:
2025-04-26 18:56:41 +02:00
parent a5f892b86a
commit cb2bfda88d
54 changed files with 51 additions and 120 deletions
@@ -29,14 +29,4 @@ public class CloudflareApiException extends Exception {
public CloudflareApiException(String message, Throwable cause) {
super(message, cause);
}
/**
* Constructs a new CloudflareApiException with the specified cause.
*
* @param cause the cause of this exception, which is the underlying throwable that triggered this
* exception.
*/
public CloudflareApiException(Throwable cause) {
super(cause);
}
}
@@ -31,13 +31,4 @@ public class CloudflareNotFoundException extends CloudflareApiException {
super(message, cause);
}
/**
* Constructs a new CloudflareNotFoundException with the specified cause.
*
* @param cause the cause of this exception, which is the underlying throwable that triggered this
* exception.
*/
public CloudflareNotFoundException(Throwable cause) {
super(cause);
}
}