feat(admin): added backend for admin pages
This commit is contained in:
parent
54cfc05b88
commit
56ea7fb7f0
26 changed files with 662 additions and 42 deletions
15
backend/src/Exceptions/ServerRepositoryExceptions.cs
Normal file
15
backend/src/Exceptions/ServerRepositoryExceptions.cs
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
namespace JellyGlass.Exceptions;
|
||||
|
||||
public class ServerRepositoryException : Exception
|
||||
{
|
||||
public ServerRepositoryException() { }
|
||||
public ServerRepositoryException(string message) : base(message) { }
|
||||
public ServerRepositoryException(string message, Exception inner) : base(message, inner) { }
|
||||
}
|
||||
|
||||
public class ServerNotFoundException : ServerRepositoryException
|
||||
{
|
||||
public ServerNotFoundException() { }
|
||||
public ServerNotFoundException(string message) : base(message) { }
|
||||
public ServerNotFoundException(string message, Exception inner) : base(message, inner) { }
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue