Back to project page android-async-google-places.
The source code is released under:
Apache License
If you think the Android project android-async-google-places listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package io.github.axxiss.places.exception; /* w w w. j a v a 2s.c o m*/ /** * @author Axxiss */ public class ApiPlacesException extends Exception { private static final String TAG = "ApiPlacesException"; public ApiPlacesException() { super("Api Exception"); } public ApiPlacesException(String message) { super(message); } }