OSDN Git Service

DBFlute-0.9.3に更新
[ea2ddl/ea2ddl.git] / ea2ddl-gen / dbflute / templates / om / java / allcommon / exception / BindVariableCommentNotFoundPropertyException.vm
1 ${database.allClassCopyright}package ${glPackageBaseCommonException};\r
2 \r
3 /**\r
4  * The exception of when the property on bind variable comment is not found about outsideSql.\r
5  * @author ${database.ClassAuthor}\r
6  */\r
7 public class ${glBindVariableCommentNotFoundPropertyException} extends RuntimeException {\r
8 \r
9     /** Serial version UID. (Default) */\r
10     private static final long serialVersionUID = 1L;\r
11 \r
12     /**\r
13      * Constructor.\r
14      * @param msg Exception message. (NotNull)\r
15      */\r
16     public ${glBindVariableCommentNotFoundPropertyException}(String msg) {\r
17         super(msg);\r
18     }\r
19 \r
20     /**\r
21      * Constructor.\r
22      * @param msg Exception message. (NotNull)\r
23      * @param cause Throwable.\r
24      */\r
25     public ${glBindVariableCommentNotFoundPropertyException}(String msg, Throwable cause) {\r
26         super(msg, cause);\r
27     }\r
28 }\r