Removed CLI project, added database migrations, added SQLHelper
This commit is contained in:
14
src/Server/Exceptions/DatabaseExceptions.cs
Normal file
14
src/Server/Exceptions/DatabaseExceptions.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
namespace Server.Exceptions;
|
||||
|
||||
public class DatabaseVersionException : Exception
|
||||
{
|
||||
public DatabaseVersionException()
|
||||
: base("DatabaseVersion could not be parsed as integer. Please ensure the DatabaseVersion can be parsed as an integer.")
|
||||
{
|
||||
}
|
||||
|
||||
public DatabaseVersionException(string message)
|
||||
: base(message)
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user