Print a localized error message from the passed in key. If the application is in Debug mode will also issue a beep. @param aKey A key for the localized string in the language bundle
(final String aKey)
| 217 | * @param aKey A key for the localized string in the language bundle |
| 218 | */ |
| 219 | public static void errorPrintLocalised(final String aKey) |
| 220 | { |
| 221 | final String msg = LanguageBundle.getString(aKey); |
| 222 | errorPrint(msg); |
| 223 | } |
| 224 | |
| 225 | /** |
| 226 | * Print a localized error message including parameter substitution. The |