Class CurlException

All Implemented Interfaces:
Serializable

public class CurlException extends RuntimeException
Custom exception class for handling errors related to Curl operations. This class extends RuntimeException and provides constructors to create an exception instance with a message and an optional cause.

Usage examples:

     throw new CurlException("Error message");
     throw new CurlException("Error message", cause);
 
See Also:
  • Constructor Details

    • CurlException

      public CurlException(String message, Throwable cause)
    • CurlException

      public CurlException(String message)