* @param e the exception.
*/
public static void showExceptionDialog
(final Component parent, final String localisationBase, final Exception e)
{
final ResourceBundleSupport resources = new ResourceBundleSupport(Locale.getDefault(), RESOURCE_BASE,
ObjectUtilities.getClassLoader(AbstractDemoFrame.class));
final String title = resources.getString(localisationBase + ".title");
final String format = resources.getString(localisationBase + ".message");
final String message = MessageFormat.format
(format, new Object[]{e.getLocalizedMessage()});
ExceptionDialog.showExceptionDialog(parent, title, message, e);
}