mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-24 03:56:30 +00:00
ab1b604aec
* Resolve warnings and move shared props to Directory.Build.props and Directory.Packages.props * Cleanup more messages * Fix more messages * Fix build issues
17 lines
317 B
C#
17 lines
317 B
C#
namespace Daybreak.Shared.Exceptions;
|
|
|
|
public sealed class FatalException : Exception
|
|
{
|
|
public FatalException()
|
|
{
|
|
}
|
|
|
|
public FatalException(string message) : base(message)
|
|
{
|
|
}
|
|
|
|
public FatalException(string message, Exception innerException) : base(message, innerException)
|
|
{
|
|
}
|
|
}
|