Use LocalizableMessage.EMPTY
| | |
| | | |
| | | /** The value set by the dsreplication script if it is called the first time. */ |
| | | private static final String FIRST_SCRIPT_CALL = "firstcall"; |
| | | private static final LocalizableMessage EMPTY_MSG = LocalizableMessage.raw(""); |
| | | private static final LocalizableMessage EMPTY_MSG = LocalizableMessage.EMPTY; |
| | | |
| | | private boolean forceNonInteractive; |
| | | |
| | |
| | | try { |
| | | return AdminTestCaseUtils.getConfiguration(context, cfgDefn, Converters.from(cfgEntry)); |
| | | } catch (IllegalArgumentException e) { |
| | | throw new ConfigException(LocalizableMessage.raw(""), e); |
| | | throw new ConfigException(LocalizableMessage.EMPTY, e); |
| | | } |
| | | } |
| | | } |