mirror of
https://github.com/jlengrand/openapi-generator.git
synced 2026-05-18 08:31:20 +00:00
48 lines
1.5 KiB
Plaintext
48 lines
1.5 KiB
Plaintext
using System;
|
|
|
|
namespace {{packageName}}.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>
|
|
/// 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>
|
|
public ApiException(int errorCode, string message, Object errorContent = null) : base(message) {
|
|
this.ErrorCode = errorCode;
|
|
this.ErrorContent = errorContent;
|
|
}
|
|
|
|
}
|
|
|
|
}
|