1
2
3
4 package com.github.smokestack.ejb;
5
6
7
8
9
10
11
12 public class MockEJBContainerException extends RuntimeException {
13
14
15
16
17 private static final long serialVersionUID = 2618845219787087748L;
18
19
20
21
22 public MockEJBContainerException() {
23 }
24
25
26
27
28 public MockEJBContainerException(String message) {
29 super(message);
30 }
31
32
33
34
35 public MockEJBContainerException(Throwable cause) {
36 super(cause);
37 }
38
39
40
41
42
43 public MockEJBContainerException(String message, Throwable cause) {
44 super(message, cause);
45 }
46 }