/* Copyright 2014 Malcolm Herring * * This is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, version 3 of the License. * * For a copy of the GNU General Public License, see <http://www.gnu.org/licenses/>. */ package messages; import java.util.MissingResourceException; import java.util.ResourceBundle; public final class Messages { private static final String BUNDLE_NAME = "resources/msg.messages"; private static final ResourceBundle RESOURCE_BUNDLE = ResourceBundle.getBundle(BUNDLE_NAME); private Messages() { } public static String getString(String key) { try { return RESOURCE_BUNDLE.getString(key); } catch (MissingResourceException e) { return '!' + key + '!'; } } }