Back to project page uber-java-client.
The source code is released under:
MIT License
If you think the Android project uber-java-client 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 com.victorsima.uber.exception; //from w w w.j a v a 2s. c o m /** * An obj representing a HTTP 403 Forbidden error */ public class ForbiddenException extends Exception { public ForbiddenException() { super("HTTP 403 error"); } }