Business Logic Toolkit for .NET
www.bltoolkit.net
|  Home   |  Download   |  Documentation   |  Discussions   |  License   |

  Source.Data.OperationExceptionEventArgs.cs

 
namespace BLToolkit.Data
{
    public delegate void OperationExceptionEventHandler(object sender, OperationExceptionEventArgs ea);

    public class OperationExceptionEventArgs : OperationTypeEventArgs
    {
        private readonly DataException _exception;
        public           DataException  Exception
        {
            get { return _exception; }
        }

        public OperationExceptionEventArgs(OperationType operation, DataException exception)
            : base (operation)
        {
            _exception = exception;
        }
    }
}
 
© 2010 www.bltoolkit.net
support@bltoolkit.net