# HttpRequestExecutorException
sealed class HttpRequestExecutorException : Exception
A class hierarchy that describes network issues.
# Inheritors
| HttpError |
| ExecutionError |
# Types
| Name | Summary |
|---|---|
| ExecutionError | class ExecutionError(message: String? = null, cause: Throwable? = null) : HttpRequestExecutorException Error while executing HTTP request. |
| HttpError | class HttpError(val responseCode: Int, val responseBody: String) : HttpRequestExecutorException The server responded with an HTTP error. |
# Properties
| Name | Summary |
|---|---|
| cause | open val cause: Throwable? |
| message | open val message: String? |
# Functions
| Name | Summary |
|---|---|
| addSuppressed | fun addSuppressed(p0: Throwable) |
| fillInStackTrace | open fun fillInStackTrace(): Throwable |
| getLocalizedMessage | open fun getLocalizedMessage(): String |
| getStackTrace | open fun getStackTrace(): Array<StackTraceElement> |
| getSuppressed | fun getSuppressed(): Array<Throwable> |
| initCause | open fun initCause(p0: Throwable): Throwable |
| printStackTrace | open fun printStackTrace() open fun printStackTrace(p0: PrintStream) open fun printStackTrace(p0: PrintWriter) |
| setStackTrace | open fun setStackTrace(p0: Array<StackTraceElement>) |