Files
Singer-BE/Singer_Hexdive/Exceptions/NotfoundException.cs

8 lines
171 B
C#

namespace Singer_Hexdive.Exceptions
{
public class NotfoundException : Exception
{
public NotfoundException(string message) : base(message) { }
}
}