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

com.octo.android.robospice.persistence.exception.CacheSavingException Maven / Gradle / Ivy

The newest version!
package com.octo.android.robospice.persistence.exception;

/**
 * Exception thrown when a problem occurs while saving data to cache. Those
 * exceptions are not thrown by default in the framework.
 * @author sni
 */
public class CacheSavingException extends SpiceException {

    private static final long serialVersionUID = -633402253089445891L;

    public CacheSavingException(String detailMessage) {
        super(detailMessage);
    }

    public CacheSavingException(String detailMessage, Throwable throwable) {
        super(detailMessage, throwable);
    }

    public CacheSavingException(Throwable throwable) {
        super(throwable);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy