View Javadoc

1   /*
2    * Copyright 2004-2008 the Seasar Foundation and the Others.
3    *
4    * Licensed under the Apache License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    *     http://www.apache.org/licenses/LICENSE-2.0
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
13   * either express or implied. See the License for the specific language
14   * governing permissions and limitations under the License.
15   */
16  package org.seasar.cubby.exception;
17  
18  import org.seasar.framework.exception.SRuntimeException;
19  
20  /**
21   * アクションメソッドが <code>null</code> を返した場合にスローされる実行時例外です。
22   * 
23   * @author baba
24   * @since 1.0.0
25   */
26  public class ActionRuntimeException extends SRuntimeException {
27  
28  	/** シリアルバージョンUID。 */
29  	private static final long serialVersionUID = 5185053339795669542L;
30  
31  	/**
32  	 * 指定されたメッセージコードとその置換文字列および原因を使用して新規例外を構築します。
33  	 * 
34  	 * @param messageCode
35  	 *            メッセージコード
36  	 * @param args
37  	 *            メッセージコードに対応するメッセージに対する置換文字列の配列
38  	 * @param cause
39  	 *            この例外の原因
40  	 */
41  	public ActionRuntimeException(final String messageCode,
42  			final Object[] args, final Throwable cause) {
43  		super(messageCode, args, cause);
44  	}
45  
46  	/**
47  	 * 指定されたメッセージコードとその置換文字列を使用して新規例外を構築します。
48  	 * 
49  	 * @param messageCode
50  	 *            メッセージコード
51  	 * @param args
52  	 *            メッセージコードに対応するメッセージに対する置換文字列の配列
53  	 */
54  	public ActionRuntimeException(final String messageCode, final Object[] args) {
55  		super(messageCode, args);
56  	}
57  
58  	/**
59  	 * 指定されたメッセージコードを使用して新規例外を構築します。
60  	 * 
61  	 * @param messageCode
62  	 *            メッセージコード
63  	 */
64  	public ActionRuntimeException(final String messageCode) {
65  		super(messageCode);
66  	}
67  
68  }