We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1926df8 + c118db8 commit 6241b4dCopy full SHA for 6241b4d
src/main/java/seedu/address/storage/JsonJobFestGoStorage.java
@@ -56,6 +56,9 @@ public Optional<ReadOnlyJobFestGo> readJobFestGo(Path filePath) throws DataLoadi
56
} catch (IllegalValueException ive) {
57
logger.info("Illegal values found in " + filePath + ": " + ive.getMessage());
58
throw new DataLoadingException(ive);
59
+ } catch (NullPointerException npe) {
60
+ logger.info("Null pointer found in " + filePath + ": " + npe.getMessage());
61
+ throw new DataLoadingException(npe);
62
}
63
64
0 commit comments