Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
PathTemplateParseException |
|
| 1.0;1 |
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 | * パステンプレートのパースに失敗したことを表す例外です。 | |
22 | * | |
23 | * @author baba | |
24 | * @since 1.1.1 | |
25 | */ | |
26 | public class PathTemplateParseException extends SRuntimeException { | |
27 | ||
28 | /** シリアルバージョンUID。 */ | |
29 | private static final long serialVersionUID = 1L; | |
30 | ||
31 | /** | |
32 | * 指定されたメッセージコードとその置換文字列および原因を使用して新規例外を構築します。 | |
33 | * | |
34 | * @param messageCode | |
35 | * メッセージコード | |
36 | * @param args | |
37 | * メッセージコードに対応するメッセージに対する置換文字列の配列 | |
38 | * @param cause | |
39 | * この例外の原因 | |
40 | */ | |
41 | public PathTemplateParseException(final String messageCode, | |
42 | final Object[] args, final Throwable cause) { | |
43 | 0 | super(messageCode, args, cause); |
44 | 0 | } |
45 | ||
46 | /** | |
47 | * 指定されたメッセージコードとその置換文字列を使用して新規例外を構築します。 | |
48 | * | |
49 | * @param messageCode | |
50 | * メッセージコード | |
51 | * @param args | |
52 | * メッセージコードに対応するメッセージに対する置換文字列の配列 | |
53 | */ | |
54 | public PathTemplateParseException(final String messageCode, | |
55 | final Object[] args) { | |
56 | 6 | super(messageCode, args); |
57 | 6 | } |
58 | ||
59 | /** | |
60 | * 指定されたメッセージコードを使用して新規例外を構築します。 | |
61 | * | |
62 | * @param messageCode | |
63 | * メッセージコード | |
64 | */ | |
65 | public PathTemplateParseException(final String messageCode) { | |
66 | 0 | super(messageCode); |
67 | 0 | } |
68 | ||
69 | } |