mirror of
https://github.com/Tribufu/ServerManagers
synced 2026-08-16 08:01:06 +00:00
31 lines
965 B
C#
31 lines
965 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace ServerManager.WebApplication.Models
|
|
{
|
|
public class ServerManagerApiException : Exception
|
|
{
|
|
public ServerManagerApiException() : base()
|
|
{ }
|
|
|
|
public ServerManagerApiException(int statusCode, ICollection<string> messages) : base()
|
|
{
|
|
StatusCode = statusCode;
|
|
Messages = messages;
|
|
}
|
|
|
|
public ServerManagerApiException(int statusCode, ICollection<string> messages, Exception innerException) : base(null, innerException)
|
|
{
|
|
StatusCode = statusCode;
|
|
Messages = messages;
|
|
}
|
|
|
|
protected ServerManagerApiException(SerializationInfo info, StreamingContext context) : base(info, context)
|
|
{ }
|
|
|
|
public int StatusCode { get; private set; } = 0;
|
|
|
|
public ICollection<string> Messages { get; private set; } = new List<string>();
|
|
}
|
|
}
|