namespace EDPlayerJournal; /// /// Thrown when the parser encounters an invalid journal entry /// public class InvalidJournalEntryException : Exception { public InvalidJournalEntryException() { } public InvalidJournalEntryException(string message) : base(message) { } public InvalidJournalEntryException(string message, Exception inner) : base(message, inner) { } } /// /// Thrown when the parser finds an invalid journal file /// public class JournalException : Exception { public JournalException(string message) : base(message) {} }