Fixed Server folder name
This commit is contained in:
14
src/Server/Exceptions/ServerExceptions.cs
Normal file
14
src/Server/Exceptions/ServerExceptions.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
namespace server.Exceptions;
|
||||
|
||||
public class ServerConfigurationException : Exception
|
||||
{
|
||||
public ServerConfigurationException()
|
||||
: base("Configuration is incomplete or was set up incorrectly")
|
||||
{
|
||||
}
|
||||
|
||||
public ServerConfigurationException(string message)
|
||||
: base(message)
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user