1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.seasar.cubby.exception;
17
18 import org.seasar.framework.exception.SRuntimeException;
19
20 public class ActionRuntimeException extends SRuntimeException {
21
22 private static final long serialVersionUID = 5185053339795669542L;
23
24 public ActionRuntimeException(final String messageCode,
25 final Object[] args, final Throwable cause) {
26 super(messageCode, args, cause);
27 }
28
29 public ActionRuntimeException(final String messageCode, final Object[] args) {
30 super(messageCode, args);
31 }
32
33 public ActionRuntimeException(final String messageCode) {
34 super(messageCode);
35 }
36
37 }