-
public interface CloudXErrorGeneric CloudX Error interface. Provides error information with a code, message, and optional cause.
-
-
Method Summary
Modifier and Type Method Description abstract CloudXErrorCodegetCode()The error code category. abstract StringgetMessage()Human-readable error message. abstract ThrowablegetCause()Optional underlying exception that caused this error. abstract StringgetFormattedMessage()Pre-formatted message including the error code and description. -
-
Method Detail
-
getCode
abstract CloudXErrorCode getCode()
The error code category.
-
getMessage
abstract String getMessage()
Human-readable error message.
-
getFormattedMessage
abstract String getFormattedMessage()
Pre-formatted message including the error code and description.
-
-
-
-