Class CloudflareNotFoundException

All Implemented Interfaces:
Serializable

public class CloudflareNotFoundException extends CloudflareApiException
This exception is thrown to indicate that a requested resource was not found during interaction with the Cloudflare API.

It extends CloudflareApiException to provide specific errors related to situations where Cloudflare responds with a "not found" operation.

See Also:
  • Constructor Details

    • CloudflareNotFoundException

      public CloudflareNotFoundException(String message)
      Constructs a new CloudflareNotFoundException with the specified detail message.
      Parameters:
      message - the detail message, which provides additional context about the "not found" error encountered during interaction with the Cloudflare API.
    • CloudflareNotFoundException

      public CloudflareNotFoundException(String message, Throwable cause)
      Constructs a new CloudflareNotFoundException with the specified detail message and cause.
      Parameters:
      message - the detail message, which provides additional context about the "not found" error encountered during interaction with the Cloudflare API.
      cause - the cause of this exception, which is the underlying throwable that triggered this exception.