HomeException

class HomeException : Exception


The exception thrown if any issue is encountered during an API call. Exceptions could be recoverable by the user of the API or unrecoverable. The error code in each exception needs to be documented to showcase the state.

Summary

Nested types

Public constructors

HomeException(
    error: HomeError,
    exception: Exception?,
    subErrors: Map<StringHomeError>
)
HomeException(
    code: Int,
    message: String,
    exception: Exception?,
    subErrors: Map<StringHomeError>
)

Public properties

HomeError

the home error that occurred

Map<StringHomeError>

any errors that were from sub operations, usually only set for bulk operations

Inherited properties

From kotlin.Throwable

Public companion functions

aborted

fun aborted(message: String = ""): HomeException

alreadyExists

fun alreadyExists(message: String = ""): HomeException

apiNotConnected

fun apiNotConnected(message: String = ""): HomeException

bulkError

fun bulkError(subErrors: Map<StringHomeError>): HomeException

Used to inform callers of specific failures during a bulk operation

cancelled

fun cancelled(message: String = ""): HomeException

dataLoss

fun dataLoss(message: String = ""): HomeException

deadlineExceeded

fun deadlineExceeded(message: String = ""): HomeException

failedPrecondition

fun failedPrecondition(message: String = ""): HomeException

internal

fun internal(message: String = ""): HomeException

invalidArgument

fun invalidArgument(message: String = ""): HomeException

notFound

fun notFound(message: String = ""): HomeException

outOfRange

fun outOfRange(message: String = ""): HomeException

permissionDenied

fun permissionDenied(message: String = ""): HomeException

resourceExhausted

fun resourceExhausted(message: String = ""): HomeException

sdkInitializationMissingInfo

fun sdkInitializationMissingInfo(message: String = ""): HomeException

unauthenticated

fun unauthenticated(message: String = ""): HomeException

unavailable

fun unavailable(message: String = ""): HomeException

unimplemented

fun unimplemented(message: String = ""): HomeException

unknown

fun unknown(message: String = ""): HomeException

Public constructors

HomeException

HomeException(
    error: HomeError,
    exception: Exception? = null,
    subErrors: Map<StringHomeError> = emptyMap()
)
Parameters
error: HomeError

the home error that occurred

exception: Exception? = null

another exception that caused this one

subErrors: Map<StringHomeError> = emptyMap()

any errors that were from sub operations, usually only set for bulk operations

HomeException

HomeException(
    code: Int,
    message: String,
    exception: Exception? = null,
    subErrors: Map<StringHomeError> = emptyMap()
)

Public properties

error

val errorHomeError

the home error that occurred

subErrors

val subErrorsMap<StringHomeError>

any errors that were from sub operations, usually only set for bulk operations