mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-16 07:39:57 +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
18 lines
370 B
C#
18 lines
370 B
C#
namespace Daybreak.Shared.Exceptions;
|
|
|
|
public sealed class ExecutableNotFoundException : Exception
|
|
{
|
|
public ExecutableNotFoundException()
|
|
{
|
|
}
|
|
|
|
public ExecutableNotFoundException(string message) : base(message)
|
|
{
|
|
}
|
|
|
|
|
|
public ExecutableNotFoundException(string message, Exception innerException) : base(message, innerException)
|
|
{
|
|
}
|
|
}
|