forked from loafle/openapi-generator-original
* rename csharp-netcore to csharp * rename file * renmae modules/openapi-generator/src/main/resources/csharp-netcore * update samples * mv dir * update samples * rename csharp-netcore to csharp in appveyor.yml * update doc
69 lines
2.2 KiB
C#
69 lines
2.2 KiB
C#
/*
|
|
* OpenAPI Petstore
|
|
*
|
|
* This is a sample server Petstore server. For this sample, you can use the api key `special-key` to test the authorization filters.
|
|
*
|
|
* The version of the OpenAPI document: 1.0.0
|
|
* Generated by: https://github.com/openapitools/openapi-generator.git
|
|
*/
|
|
|
|
|
|
using System;
|
|
|
|
namespace Org.OpenAPITools.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;
|
|
}
|
|
}
|
|
|
|
}
|