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 DownloadRuntimeException extends SRuntimeException {
21
22 private static final long serialVersionUID = 8194033901086045201L;
23
24 public DownloadRuntimeException(final String messageCode,
25 final Object[] args, final Throwable cause) {
26 super(messageCode, args, cause);
27 }
28
29 public DownloadRuntimeException(final String messageCode,
30 final Object[] args) {
31 super(messageCode, args);
32 }
33
34 public DownloadRuntimeException(final String messageCode) {
35 super(messageCode);
36 }
37
38 }