BaseErrorCode

abstract class BaseErrorCode(code: String, publicMessage: String)

Base abstract class for all error codes in the 3DS SDK.

This class provides the foundation for error code hierarchies, containing the error code string and a public message that can be displayed to users. The fields are marked as internal and use

Parameters

code

The error code string identifier.

publicMessage

The public-facing error message that can be safely displayed to users.

Inheritors

Constructors

Link copied to clipboard
constructor(code: String, publicMessage: String)