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); } }