| | | 1 | | namespace ArturRios.Util.WebApi.Client; |
| | | 2 | | |
| | | 3 | | /// <summary>Raised when a <see cref="BaseWebApiClientRoute"/> operation fails, e.g. authentication returns no body.</su |
| | | 4 | | public class WebApiClientException : Exception |
| | | 5 | | { |
| | | 6 | | /// <summary>Initializes a new instance with an error message.</summary> |
| | 0 | 7 | | public WebApiClientException(string message) : base(message) { } |
| | | 8 | | |
| | | 9 | | /// <summary>Initializes a new instance with an error message and inner exception.</summary> |
| | 0 | 10 | | public WebApiClientException(string message, Exception innerException) : base(message, innerException) { } |
| | | 11 | | } |