minimal improvements for ApiResponse

This commit is contained in:
Pascal Schedel
2024-10-23 12:51:36 +02:00
parent 3cec6983b8
commit 59e9499d92
3 changed files with 20 additions and 3 deletions

View 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)
{
}
}