All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.bumptech.glide.load.engine.CallbackException Maven / Gradle / Ivy

Go to download

A fast and efficient image loading library for Android focused on smooth scrolling.

There is a newer version: 5.0.0-rc01
Show newest version
package com.bumptech.glide.load.engine;

/**
 * An exception indicating that code outside of Glide threw an unexpected exception.
 *
 * 

This is useful to allow us to distinguish developer errors on the part of users of Glide from * developer errors on the part of developers of Glide itself. */ final class CallbackException extends RuntimeException { private static final long serialVersionUID = -7530898992688511851L; CallbackException(Throwable cause) { super("Unexpected exception thrown by non-Glide code", cause); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy