mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-23 02:51:26 -07:00
19 lines
455 B
C#
19 lines
455 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Bloxstrap.Exceptions
|
|
{
|
|
internal class HttpResponseUnsuccessfulException : Exception
|
|
{
|
|
public HttpResponseMessage ResponseMessage { get; }
|
|
|
|
public HttpResponseUnsuccessfulException(HttpResponseMessage responseMessage) : base()
|
|
{
|
|
ResponseMessage = responseMessage;
|
|
}
|
|
}
|
|
}
|