Back to project page StreamHub-Android-Reviews-App.
The source code is released under:
MIT License
If you think the Android project StreamHub-Android-Reviews-App 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.filepicker.sdk; /* w ww. ja v a 2s .c o m*/ public class AuthError extends Exception { private static final long serialVersionUID = 3873865053998671409L; private final String path; private final String service; public AuthError(String path, String service) { this.path = path; this.service = service; } public String getPath() { return this.path; } public String getService() { return this.service; } }