Skip to content

Commit

Permalink
chore(templates): make InvalidEventTemplateException public (#259)
Browse files Browse the repository at this point in the history
  • Loading branch information
mwangggg committed Sep 19, 2023
1 parent 708fbb3 commit fb3434a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ public static class InvalidXmlException extends Exception {

@SuppressWarnings("serial")
public static class InvalidEventTemplateException extends Exception {
InvalidEventTemplateException(String message, Throwable cause) {
public InvalidEventTemplateException(String message, Throwable cause) {
super(message, cause);
}

InvalidEventTemplateException(String message) {
public InvalidEventTemplateException(String message) {
super(message);
}
}
Expand Down

0 comments on commit fb3434a

Please sign in to comment.