27 lines
527 B
C#
27 lines
527 B
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace BlazorProducts.Client.HttpInterceptor
|
|
{
|
|
[Serializable]
|
|
internal class HttpResponseException : Exception
|
|
{
|
|
public HttpResponseException()
|
|
{
|
|
}
|
|
|
|
public HttpResponseException(string message) : base(message)
|
|
{
|
|
}
|
|
|
|
public HttpResponseException(string message, Exception innerException)
|
|
: base(message, innerException)
|
|
{
|
|
}
|
|
|
|
protected HttpResponseException(SerializationInfo info, StreamingContext context)
|
|
: base(info, context)
|
|
{
|
|
}
|
|
}
|
|
} |