FormError.ErrorCode

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


Error code values.

Summary

Constants

static final int

Internal error.

static final int

There was an error loading data from the network.

static final int

Invalid operation.

static final int

The operation has timed out.

Constants

INTERNAL_ERROR

public static final int INTERNAL_ERROR = 1

Internal error.

INTERNET_ERROR

public static final int INTERNET_ERROR = 2

There was an error loading data from the network.

INVALID_OPERATION

public static final int INVALID_OPERATION = 3

Invalid operation. The SDK is being invoked incorrectly.

TIME_OUT

public static final int TIME_OUT = 4

The operation has timed out.