OSDN Git Service

108889a0979fe0a54d3dfdbcacc74a113845c35d
[ea2ddl/ea2ddl.git] / ea2ddl-gen / dbflute / templates / om / csharp / allcommon / exception / BatchEntityAlreadyUpdatedException.vmnet
1 \r
2 using System;\r
3 \r
4 namespace ${glPackageBaseCommonException} {\r
5 \r
6     /// <summary>\r
7     /// The exception of when the entity has already been updated by other thread in batch update.\r
8     /// Author: ${database.ClassAuthor}\r
9     /// </summary>\r
10     public class ${glBatchEntityAlreadyUpdatedException} : ${glEntityAlreadyUpdatedException} {\r
11 \r
12         protected int? _batchUpdateCount;\r
13         public ${glBatchEntityAlreadyUpdatedException}(Object bean, int rows, int? batchUpdateCount)\r
14         : base(bean, rows) { this._batchUpdateCount = batchUpdateCount; }\r
15         \r
16         public int? BatchUpdateCount { get { return _batchUpdateCount; } }\r
17     }\r
18 }\r