View Javadoc

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