8 lines
171 B
C#
8 lines
171 B
C#
namespace Singer_Hexdive.Exceptions
|
|
{
|
|
public class NotfoundException : Exception
|
|
{
|
|
public NotfoundException(string message) : base(message) { }
|
|
}
|
|
}
|