mirror of
https://github.com/Tribufu/ProxmoxSharp
synced 2026-08-07 20:06:24 +00:00
23 lines
560 B
C#
23 lines
560 B
C#
/*
|
|
* ProxMox VE API
|
|
*
|
|
* ProxMox VE API
|
|
*
|
|
* The version of the OpenAPI document: 2.0
|
|
* Contact: support@lumaserv.com
|
|
* Generated by: https://github.com/openapitools/openapi-generator.git
|
|
*/
|
|
|
|
|
|
using System;
|
|
|
|
namespace ProxmoxSharp.Client
|
|
{
|
|
/// <summary>
|
|
/// A delegate to ExceptionFactory method
|
|
/// </summary>
|
|
/// <param name="methodName">Method name</param>
|
|
/// <param name="response">Response</param>
|
|
/// <returns>Exceptions</returns>
|
|
public delegate Exception ExceptionFactory(string methodName, IApiResponse response);
|
|
}
|