Back to project page aBusTripMK.
The source code is released under:
GNU General Public License
If you think the Android project aBusTripMK listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
// Created by plusminus on 14:29:37 - 12.10.2008 package org.andnav.osm.exceptions; //from ww w . j a v a 2 s .co m 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 // =========================================================== }