Class ErrorMessage

java.lang.Object
de.latlon.ets.core.error.ErrorMessage

public final class ErrorMessage extends Object
Utility class for retrieving and formatting localized error messages that describe failed assertions.
Author:
Lyn Goltz
  • Method Details

    • format

      public static String format(ErrorMessageKey msgKey, Object... args)
      Produces a formatted error message using the supplied substitution arguments and the current locale. The arguments should reflect the order of the placeholders in the message template.
      Parameters:
      msgKey - The ErrorMessageKey identifying the message template.
      args - An array of arguments to be formatted and substituted in the content of the message.
      Returns:
      A String containing the message content. If no message is found for the given key, a MissingResourceException is thrown.
    • get

      public static String get(ErrorMessageKey msgKey)
      Retrieves a simple message according to the current locale.
      Parameters:
      msgKey - The ErrorMessageKey identifying the message.
      Returns:
      A String containing the message content. If no message is found for the given key, a MissingResourceException is thrown.