mirror of
https://github.com/tribufu/tribufu-dotnet
synced 2026-02-04 10:46:34 +00:00
* Generate project with open-api-generator * Add example project * Create wrapper class
70 lines
2.2 KiB
C#
70 lines
2.2 KiB
C#
/*
|
|
* Tribufu API
|
|
*
|
|
* REST API to access Tribufu services.
|
|
*
|
|
* The version of the OpenAPI document: 1.1.0
|
|
* Contact: contact@tribufu.com
|
|
* Generated by: https://github.com/openapitools/openapi-generator.git
|
|
*/
|
|
|
|
|
|
using System;
|
|
|
|
namespace Tribufu.Generated.Client
|
|
{
|
|
/// <summary>
|
|
/// API Exception
|
|
/// </summary>
|
|
public class ApiException : Exception
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the error code (HTTP status code)
|
|
/// </summary>
|
|
/// <value>The error code (HTTP status code).</value>
|
|
public int ErrorCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the error content (body json object)
|
|
/// </summary>
|
|
/// <value>The error content (Http response body).</value>
|
|
public object ErrorContent { get; private set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the HTTP headers
|
|
/// </summary>
|
|
/// <value>HTTP headers</value>
|
|
public Multimap<string, string> Headers { get; private set; }
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="ApiException"/> class.
|
|
/// </summary>
|
|
public ApiException() { }
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="ApiException"/> class.
|
|
/// </summary>
|
|
/// <param name="errorCode">HTTP status code.</param>
|
|
/// <param name="message">Error message.</param>
|
|
public ApiException(int errorCode, string message) : base(message)
|
|
{
|
|
this.ErrorCode = errorCode;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="ApiException"/> class.
|
|
/// </summary>
|
|
/// <param name="errorCode">HTTP status code.</param>
|
|
/// <param name="message">Error message.</param>
|
|
/// <param name="errorContent">Error content.</param>
|
|
/// <param name="headers">HTTP Headers.</param>
|
|
public ApiException(int errorCode, string message, object errorContent = null, Multimap<string, string> headers = null) : base(message)
|
|
{
|
|
this.ErrorCode = errorCode;
|
|
this.ErrorContent = errorContent;
|
|
this.Headers = headers;
|
|
}
|
|
}
|
|
|
|
}
|