1 write to Exception
System.Data.Services (1)
System\Data\Services\DataService.cs (1)
237args.Exception = handlingException;
9 references to Exception
System.Data.Services (9)
System\Data\Services\BatchServiceHost.cs (1)
332Debug.Assert(WebUtil.IsCatchableExceptionType(args.Exception), "WebUtil.IsCatchableExceptionType(args.Exception)");
System\Data\Services\DataService.cs (1)
469Debug.Assert(args.Exception != null, "args.Exception != null -- .ctor should have checked");
System\Data\Services\ErrorHandler.cs (4)
429DataServiceException dataException = ExtractErrorValues(this.exceptionArgs.Exception, out errorCode, out message, out messageLang); 445Exception exception = (dataException == null) ? this.exceptionArgs.Exception : dataException.InnerException; 461DataServiceException dataException = ExtractErrorValues(this.exceptionArgs.Exception, out errorCode, out message, out messageLang); 478Exception exception = (dataException == null) ? this.exceptionArgs.Exception : dataException.InnerException;
System\Data\Services\HandleExceptionArgs.cs (3)
28/// <summary>The <see cref="Exception"/> being handled.</summary> 39/// <param name="exception">The <see cref="Exception"/> being handled.</param> 55/// <summary>Gets or sets the <see cref="Exception"/> being handled.</summary>