// Created by plusminus on 14:29:37 - 12.10.2008 package de.blau.android.services.exceptions; public class EmptyCacheException extends Exception { // =========================================================== // Constants // =========================================================== private static final long serialVersionUID = -6096533745569312071L; // =========================================================== // Fields // =========================================================== // =========================================================== // Constructors // =========================================================== public EmptyCacheException() { super(); } public EmptyCacheException(String detailMessage, Throwable throwable) { super(detailMessage, throwable); } public EmptyCacheException(String detailMessage) { super(detailMessage); } public EmptyCacheException(Throwable throwable) { super(throwable); } // =========================================================== // Getter & Setter // =========================================================== // =========================================================== // Methods from SuperClass/Interfaces // =========================================================== // =========================================================== // Methods // =========================================================== // =========================================================== // Inner and Anonymous Classes // =========================================================== }