OSDN Git Service

DBFlute-0.9.3に更新
[ea2ddl/ea2ddl.git] / ea2ddl-gen / dbflute / templates / om / java / allcommon / exception / RecordHasOverlappedException.vm
1 ${database.allClassCopyright}package ${glPackageBaseCommonException};\r
2 \r
3 /**\r
4  * The exception when the record has overlapped.\r
5  * This class is old.\r
6  * \r
7  * @author ${database.ClassAuthor}\r
8  */\r
9 public class ${glRecordHasOverlappedException} extends RuntimeException {\r
10 \r
11     /** Serial version UID. (Default) */\r
12     private static final long serialVersionUID = 1L;\r
13 \r
14     /**\r
15      * Constructor.\r
16      * \r
17      * @param msg Exception message.\r
18      */\r
19     public ${glRecordHasOverlappedException}(String msg) {\r
20         super(msg);\r
21     }\r
22 \r
23     /**\r
24      * Constructor.\r
25      * \r
26      * @param msg Exception message.\r
27      * @param cause Throwable.\r
28      */\r
29     public ${glRecordHasOverlappedException}(String msg, Throwable cause) {\r
30         super(msg, cause);\r
31     }\r
32 }\r