1 package org.slf4j.ext;
2
3
4
5
6 public class EventException extends RuntimeException {
7
8 private static final long serialVersionUID = -22873966112391992L;
9
10
11
12
13 public EventException() {
14 super();
15 }
16
17
18
19
20
21 public EventException(String exceptionMessage) {
22 super(exceptionMessage);
23 }
24
25
26
27
28
29 public EventException(Throwable originalException) {
30 super(originalException);
31 }
32
33
34
35
36
37
38
39 public EventException(String exceptionMessage, Throwable originalException) {
40 super(exceptionMessage, originalException);
41 }
42 }