19 lines
404 B
C#
19 lines
404 B
C#
namespace Moonlight.App.ApiClients.Modrinth;
|
|
|
|
public class ModrinthException : Exception
|
|
{
|
|
public int StatusCode { get; set; }
|
|
|
|
public ModrinthException()
|
|
{
|
|
}
|
|
|
|
public ModrinthException(string message, int statusCode) : base(message)
|
|
{
|
|
StatusCode = statusCode;
|
|
}
|
|
|
|
public ModrinthException(string message, Exception inner) : base(message, inner)
|
|
{
|
|
}
|
|
} |