java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.codelibs.curl.CurlException
- All Implemented Interfaces:
Serializable
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 Summary
ConstructorsConstructorDescriptionCurlException(String message) CurlException(String message, Throwable cause) -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
CurlException
-
CurlException
-