BatchServiceResponseException<TResponse extends ServiceResponse> constructor
BatchServiceResponseException<TResponse extends ServiceResponse> (
- ServiceResponseCollection<
TResponse> ? responses, - String message, [
- Exception? innerException
Implementation
// BatchServiceResponseException(
// ServiceResponseCollection<TResponse> serviceResponses,
// String message)
// : super(message)
// {
// EwsUtilities.Assert(
// serviceResponses != null,
// "MultiServiceResponseException.ctor",
// "serviceResponses is null");
//
// this.responses = serviceResponses;
// }
/// <summary>
/// Initializes a new instance of MultiServiceResponseException.
/// </summary>
/// <param name="serviceResponses">The list of responses to be associated with this exception.</param>
/// <param name="message">The message that describes the error.</param>
/// <param name="innerException">The exception that is the cause of the current exception.</param>
BatchServiceResponseException(this.responses, String message,
[Exception? innerException])
: super(message, innerException);