All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.bund.bva.isyfact.task.exception.TaskFehlertextProvider Maven / Gradle / Ivy

The newest version!
package de.bund.bva.isyfact.task.exception;

import java.text.MessageFormat;
import java.util.Locale;
import java.util.ResourceBundle;

import de.bund.bva.isyfact.exception.FehlertextProvider;

/**
 * Fehlertext-Provider for isy-task.
 */
public class TaskFehlertextProvider implements FehlertextProvider {

    /**
     * The ResourceBundle containing the error messages for isy-task.
     */
    public static final ResourceBundle FEHLERTEXT_BUNDLE = ResourceBundle.getBundle(
            "resources/isy-task/nachrichten/fehler", Locale.GERMANY);

    /**
     * {@inheritDoc}
     */
    public String getMessage(String schluessel, String... parameter) {
        return MessageFormat.format(FEHLERTEXT_BUNDLE.getString(schluessel), (Object[]) parameter);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy