forked from parisjug/event-publisher
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Check missing title element and throw Exception to clarify this inste…
…ad of NPE. Part of parisjug#6. Signed-off-by: Sun Tan <[email protected]>
- Loading branch information
Showing
4 changed files
with
699 additions
and
6 deletions.
There are no files selected for viewing
11 changes: 11 additions & 0 deletions
11
src/main/java/org/parisjug/eventpublisher/eventpage/EventPageCheckException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package org.parisjug.eventpublisher.eventpage; | ||
|
||
public class EventPageCheckException extends RuntimeException { | ||
|
||
private static final long serialVersionUID = 1L; | ||
|
||
public EventPageCheckException(String message) { | ||
super(message); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.