1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package com.fatwire.gst.foundation.controller.action.support;
17
18 public class NoSuchMethodExceptionRuntimeException extends RuntimeException {
19
20
21
22
23 private static final long serialVersionUID = -7633915174457400855L;
24
25 public NoSuchMethodExceptionRuntimeException() {
26
27 }
28
29 public NoSuchMethodExceptionRuntimeException(String message) {
30 super(message);
31 }
32
33 public NoSuchMethodExceptionRuntimeException(Throwable cause) {
34 super(cause);
35 }
36
37 public NoSuchMethodExceptionRuntimeException(String message, Throwable cause) {
38 super(message, cause);
39 }
40
41 }