Back to project page geocamTalkForAndroid.
The source code is released under:
NASA OPEN SOURCE AGREEMENT VERSION 1.3 THIS OPEN SOURCE AGREEMENT ("AGREEMENT") DEFINES THE RIGHTS OF USE, REPRODUCTION, DISTRIBUTION, MODIFICATION AND REDISTRIBUTION OF CERTAIN COMPUTER SOFTWARE ORI...
If you think the Android project geocamTalkForAndroid 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 gov.nasa.arc.geocam.talk.exception; /* w ww.j a v a2 s . c o m*/ /** * The Class AuthenticationFailedException which is thrown when we can't log * into the server because of a bad username and password combination. */ public class AuthenticationFailedException extends Exception { /** The Constant serialVersionUID. */ private static final long serialVersionUID = 7343849936559985645L; /** * Instantiates a new authentication failed exception. * * @param error The exception text */ public AuthenticationFailedException(String error) { super(error); } }