public static final enum

AuthError.ERROR_CATEGORY

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ com.amazon.identity.auth.device.AuthError.ERROR_CATEGORY

Class Overview

Each AuthError has a category to help clients determine what generic action they want to take

Summary

Enum Values
AuthError.ERROR_CATEGORY  ACTION  SDK has found an error that the client MUST respond to  
AuthError.ERROR_CATEGORY  BAD_REQUEST  Currently NOT used by Authorization SDK - Possible Client caused error by the data passed in to one of the SDK API's 
AuthError.ERROR_CATEGORY  INTERNAL  Internal SDK errors - Not meant for client to act upon. 
AuthError.ERROR_CATEGORY  NETWORK  Network Issue - Possible network connectivity issue. 
AuthError.ERROR_CATEGORY  UNKNOWN  Unknown error - client choice. 
Public Methods
static AuthError.ERROR_CATEGORY valueOf(String name)
final static ERROR_CATEGORY[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final AuthError.ERROR_CATEGORY ACTION

SDK has found an error that the client MUST respond to

public static final AuthError.ERROR_CATEGORY BAD_REQUEST

Currently NOT used by Authorization SDK - Possible Client caused error by the data passed in to one of the SDK API's

public static final AuthError.ERROR_CATEGORY INTERNAL

Internal SDK errors - Not meant for client to act upon. Please report these to our SDK support and include logs

public static final AuthError.ERROR_CATEGORY NETWORK

Network Issue - Possible network connectivity issue. Triage and verify by looking into the cause

public static final AuthError.ERROR_CATEGORY UNKNOWN

Unknown error - client choice. Please report these to our SDK support and include logs

Public Methods

public static AuthError.ERROR_CATEGORY valueOf (String name)

public static final ERROR_CATEGORY[] values ()