Files
Daybreak/Daybreak.Shared/Exceptions/ExecutableNotFoundException.cs
T
amacocian 721ee8e494 Huge application refactoring to better support plugins (#960)
* Move shared code to Shared project
* Move from Realm to Squealify
* Rename Daybreak.Shared namespaces
* Setup API project to expose a test API
2025-05-14 16:15:27 +02:00

20 lines
385 B
C#

using System;
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)
{
}
}