Back to project page polaris.
The source code is released under:
GNU Lesser General Public License
If you think the Android project polaris listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/******************************************************************************* * Copyleft 2013 Massimiliano Leone - massimiliano.leone@iubris.net . * /*from ww w . ja va 2s. co m*/ * LocationNotSoCarefulException.java is part of 'Polaris'. * * 'Polaris' is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * 'Polaris' is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with 'Polaris'; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA ******************************************************************************/ package net.iubris.polaris.locator.utils.exceptions; public class LocationNotSoCarefulException extends LocationException { public LocationNotSoCarefulException(String string) { super(string); } public LocationNotSoCarefulException(String detailMessage, Throwable throwable) { super(detailMessage, throwable); } public LocationNotSoCarefulException(Throwable throwable) { super(throwable); } private static final long serialVersionUID = 4657190508508306617L; }