You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
thrownewGobPieException("Could not locate GobPie configuration file.", e, GobPieExceptionType.GOBPIE_CONF_EXCEPTION);
104
105
} catch (JsonSyntaxExceptione) {
105
106
thrownewGobPieException("GobPie configuration file syntax is wrong.", e, GobPieExceptionType.GOBPIE_CONF_EXCEPTION);
107
+
} catch (JsonParseExceptione) {
108
+
thrownewGobPieException("There was an unknown option \"" + e.getMessage() + "\" in the GobPie configuration. Please check for any typos.", e, GobPieExceptionType.GOBPIE_CONF_EXCEPTION);
109
+
} catch (FileNotFoundExceptione) {
110
+
thrownewGobPieException("Could not locate GobPie configuration file.", e, GobPieExceptionType.GOBPIE_CONF_EXCEPTION);
106
111
}
107
112
}
108
113
109
114
110
-
/**
115
+
/**
111
116
* Method for forwarding Error messages to MagpieServer.
112
117
*
113
118
* @param popUpMessage The message shown on the pop-up message.
0 commit comments