minimal improvements for ApiResponse
This commit is contained in:
16
Pilz.Net/Api/ApiException.cs
Normal file
16
Pilz.Net/Api/ApiException.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
namespace Pilz.Net.Api;
|
||||
|
||||
public class ApiException : Exception
|
||||
{
|
||||
public ApiException()
|
||||
{
|
||||
}
|
||||
|
||||
public ApiException(string? message) : base(message)
|
||||
{
|
||||
}
|
||||
|
||||
public ApiException(string? message, Exception? innerException) : base(message, innerException)
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user