GlideException

class GlideException : Exception

An exception with zero or more causes indicating why a load in Glide failed.

Constructors

Link copied to clipboard
open fun GlideException(message: String)
Link copied to clipboard
open fun GlideException(detailMessage: String, cause: Throwable)
Link copied to clipboard
open fun GlideException(detailMessage: String, causes: List<Throwable>)

Functions

Link copied to clipboard
fun addSuppressed(exception: Throwable)
Link copied to clipboard
open fun fillInStackTrace(): Throwable
Link copied to clipboard
open fun getLocalizedMessage(): String
Link copied to clipboard
open fun getMessage(): String
Link copied to clipboard
open fun getOrigin(): Exception
Returns an Exception with a stack trace that includes where the request originated (if previously set via setOrigin) This is an experimental API that may be removed in the future.
Link copied to clipboard
open fun getRootCauses(): List<Throwable>
Returns the list of root causes that are the leaf nodes of all children of this exception.
Link copied to clipboard
fun getSuppressed(): Array<Throwable>
Link copied to clipboard
open fun initCause(cause: Throwable): Throwable
Link copied to clipboard
open fun logRootCauses(tag: String)
Logs all root causes using the given tag.
Link copied to clipboard
open fun printStackTrace()
open fun printStackTrace(err: PrintStream)
open fun printStackTrace(err: PrintWriter)
Link copied to clipboard
open fun setOrigin(exception: Exception)
Sets a stack trace that includes where the request originated.
Link copied to clipboard
open fun toString(): String

Properties

Link copied to clipboard
open val cause: Throwable
Link copied to clipboard
val causes: List<Throwable>
Link copied to clipboard
open var stackTrace: Array<StackTraceElement>