blob: 8c71249eb779e5c272bd954bd807f506ee5fea75 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015 Red Hat, Inc.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* Red Hat Inc. - initial API and implementation and/or initial documentation
*******************************************************************************/
package org.eclipse.wst.jsdt.js.cli;
import org.eclipse.osgi.util.NLS;
/**
* @author "Ilya Buziuk (ibuziuk)"
*/
public class Messages extends NLS {
private static final String BUNDLE_NAME = Messages.class.getName().toString().toLowerCase();
public static String Error_NoProjectSpecified;
public static String Error_FatalInvokingCLI;
static {
NLS.initializeMessages(BUNDLE_NAME, Messages.class);
}
private Messages() {
}
}