com.techventus.server.voice.exception.ERROR_CODE Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of google-voice-java Show documentation
Show all versions of google-voice-java Show documentation
An Unofficial Java API for Google Voice
The newest version!
/**
*
*/
package com.techventus.server.voice.exception;
public enum ERROR_CODE{
BadAuthentication( "Wrong username or password."),
NotVerified( "The account email address has not been verified. You need to access your Google account directly to resolve the issue before logging in using google-voice-java."),
TermsNotAgreed( "You have not agreed to terms. You need to access your Google account directly to resolve the issue before logging in using google-voice-java."),
CaptchaRequired( "A CAPTCHA is required. (A response with this error code will also contain an image URL and a CAPTCHA token.)"),
Unknown( "Unknown or unspecified error; the request contained invalid input or was malformed."),
AccountDeleted( "The user account has been deleted."),
AccountDisabled( "The user account has been disabled."),
ServiceDisabled( "Your access to the voice service has been disabled. (Your user account may still be valid.)"),
ServiceUnavailable( "The service is not available; try again later.");
ERROR_CODE(String pLongText) {
LONG_TEXT = pLongText;
}
public final String LONG_TEXT;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy