FormError.ErrorCode

@Retention(value = SOURCE)
@IntDef(value = [ErrorCode.INTERNAL_ERROR, ErrorCode.INTERNET_ERROR, ErrorCode.INVALID_OPERATION, ErrorCode.TIME_OUT])
annotation FormError.ErrorCode


Error code values.

Summary

Constants

const Int

Internal error.

const Int

There was an error loading data from the network.

const Int

Invalid operation.

const Int

The operation has timed out.

Constants

INTERNAL_ERROR

const val INTERNAL_ERROR = 1: Int

Internal error.

INTERNET_ERROR

const val INTERNET_ERROR = 2: Int

There was an error loading data from the network.

INVALID_OPERATION

const val INVALID_OPERATION = 3: Int

Invalid operation. The SDK is being invoked incorrectly.

TIME_OUT

const val TIME_OUT = 4: Int

The operation has timed out.