Class ErrorMessage

java.lang.Object
org.opengis.cite.gpkg12.ErrorMessage

public class ErrorMessage extends Object
Utility class for retrieving and formatting localized error messages that describe failed assertions.
  • Constructor Details

    • ErrorMessage

      public ErrorMessage()
  • Method Details

    • format

      public static String format(String 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 key identifying the message template; it should be a member of ErrorMessageKeys.
      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(String msgKey)
      Retrieves a simple message according to the current locale.
      Parameters:
      msgKey - The key identifying the message; it should be a member of ErrorMessageKeys.
      Returns:
      A String containing the message content. If no message is found for the given key, a MissingResourceException is thrown.