Exemple #1
0
 public ResultValidationInterceptionException(InterceptLayer <TArg, TResult> layer, InterceptUnitOfWork <TArg, TResult> uow, string message, Exception innerException)
     : base(layer, uow, message, innerException)
 {
 }
Exemple #2
0
 public LayerInterceptionException(InterceptLayer <TArg, TResult> layer, InterceptUnitOfWork <TArg, TResult> uow, string message, Exception innerException)
     : base(uow, message, innerException)
 {
     Condition.Requires(layer).IsNotNull();
     this._layerId = layer.Id;
 }
Exemple #3
0
 public ResultDecorationInterceptionException(InterceptLayer <TArg, TResult> layer, InterceptUnitOfWork <TArg, TResult> uow, string message)
     : base(layer, uow, message)
 {
 }