17 lines
291 B
C#
17 lines
291 B
C#
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)
|
|
{
|
|
}
|
|
}
|