Mercurial > pub > bltoolkit
annotate Source/Data/OperationExceptionEventArgs.cs @ 9:1e85f66cf767 default tip
update bltoolkit
| author | nickolay |
|---|---|
| date | Thu, 05 Apr 2018 20:53:26 +0300 |
| parents | f990fcb411a9 |
| children |
| rev | line source |
|---|---|
| 0 | 1 namespace BLToolkit.Data |
| 2 { | |
| 3 public delegate void OperationExceptionEventHandler(object sender, OperationExceptionEventArgs ea); | |
| 4 | |
| 5 public class OperationExceptionEventArgs : OperationTypeEventArgs | |
| 6 { | |
| 7 private readonly DataException _exception; | |
| 8 public DataException Exception | |
| 9 { | |
| 10 get { return _exception; } | |
| 11 } | |
| 12 | |
| 13 public OperationExceptionEventArgs(OperationType operation, DataException exception) | |
| 14 : base (operation) | |
| 15 { | |
| 16 _exception = exception; | |
| 17 } | |
| 18 } | |
| 19 } |
