// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System.Diagnostics.CodeAnalysis;
using System.Net.Http.Headers;
using System.Runtime.Serialization;
using System.Web.Http;
namespace System.Net.Http
{
///
/// An exception thrown by in case none of the requested ranges
/// overlap with the current extend of the selected resource. The current extend of the resource
/// is indicated in the ContentRange property.
///
[SuppressMessage("Microsoft.Usage", "CA2237:MarkISerializableTypesWithSerializable", Justification = "Exception is not intended to be serialized.")]
[SuppressMessage("Microsoft.Usage", "CA2240:ImplementISerializableCorrectly", Justification = "Exception is not intended to be serialized.")]
[SuppressMessage("Microsoft.Design", "CA1032:ImplementStandardExceptionConstructors", Justification = "The ContentRange is a required parameter.")]
public class InvalidByteRangeException : Exception
{
public InvalidByteRangeException(ContentRangeHeaderValue contentRange)
{
Initialize(contentRange);
}
public InvalidByteRangeException(ContentRangeHeaderValue contentRange, string message)
: base(message)
{
Initialize(contentRange);
}
public InvalidByteRangeException(ContentRangeHeaderValue contentRange, string message, Exception innerException)
: base(message, innerException)
{
Initialize(contentRange);
}
public InvalidByteRangeException(ContentRangeHeaderValue contentRange, SerializationInfo info, StreamingContext context)
: base(info, context)
{
Initialize(contentRange);
}
///
/// The current extend of the resource indicated in terms of a ContentRange header field.
///
public ContentRangeHeaderValue ContentRange { get; private set; }
private void Initialize(ContentRangeHeaderValue contentRange)
{
if (contentRange == null)
{
throw Error.ArgumentNull("contentRange");
}
ContentRange = contentRange;
}
}
}