1 package net.sourceforge.phpdt.internal.launching;
3 import java.util.MissingResourceException;
4 import java.util.ResourceBundle;
6 public class PHPLaunchingMessages {
8 private static final String BUNDLE_NAME = PHPLaunchingMessages.class.getName();
10 private static final ResourceBundle RESOURCE_BUNDLE = ResourceBundle.getBundle(BUNDLE_NAME);
12 private PHPLaunchingMessages() {}
14 public static String getString(String key) {
16 return RESOURCE_BUNDLE.getString(key);
17 } catch (MissingResourceException e) {
18 return '!' + key + '!';