1 package org.seasar.cubby.exception; 2 3 import org.seasar.framework.exception.SRuntimeException; 4 5 public class DownloadRuntimeException extends SRuntimeException { 6 7 private static final long serialVersionUID = 8194033901086045201L; 8 9 public DownloadRuntimeException(final String messageCode, 10 final Object[] args, final Throwable cause) { 11 super(messageCode, args, cause); 12 } 13 14 public DownloadRuntimeException(final String messageCode, 15 final Object[] args) { 16 super(messageCode, args); 17 } 18 19 public DownloadRuntimeException(final String messageCode) { 20 super(messageCode); 21 } 22 23 }