mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2025-12-25 06:58:57 -05:00
12 lines
198 B
C#
12 lines
198 B
C#
namespace Cleanuparr.Domain.Exceptions;
|
|
|
|
public class FatalException : Exception
|
|
{
|
|
public FatalException()
|
|
{
|
|
}
|
|
|
|
public FatalException(string message) : base(message)
|
|
{
|
|
}
|
|
} |