Back to project page LTM.
The source code is released under:
Apache License
If you think the Android project LTM listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* (C) 2012 Pragmatic Software This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/ *//*w w w . j a v a 2s .c o m*/ package com.chrisplus.ltm.utils; public class ItemNotFoundException extends Exception { public ItemNotFoundException() { super(); } public ItemNotFoundException(String message) { super(message); } public ItemNotFoundException(String message, Throwable cause) { super(message, cause); } public ItemNotFoundException(Throwable cause) { super(cause); } }