
com.github.ibole.infrastructure.common.i18n.MessageErrorCode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of infrastructure-all Show documentation
Show all versions of infrastructure-all Show documentation
The all in one project of ibole infrastructure
The newest version!
/**
*
*/
package com.github.ibole.infrastructure.common.i18n;
import com.github.ibole.infrastructure.common.utils.NLS;
/*********************************************************************************************
* .
*
*
*
* Copyright 2016, iBole Inc. All rights reserved.
*
*
*
*********************************************************************************************/
/**
* @author bwang ([email protected])
*
*/
public class MessageErrorCode extends NLS {
private static final String BUNDLE_NAME = "messages.errorcode";
//General error message key
public static String ERROR_FUNCTION_KEY;
public static String ERROR_PERMISSION_DENIED_KEY;
public static String ERROR_UNAUTHENTICATED_KEY;
public static String ERROR_INTERNAL_KEY;
public static String ERROR_UNAVAILABLE_KEY;
public static String ERROR_UNKNOWN_KEY;
//Specific error message key
public static String CLIENT_ID_REQUIRED_KEY;
//Token authenticated
public static String ACCESS_TOKEN_RENEW_FAILED_KEY;
static {
// initialize resource bundles
NLS.initializeMessages(BUNDLE_NAME, MessageErrorCode.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy