fix(admin): fixed various issues lmao idk it was a ballache and is probably quite shit. sorry to future me
This commit is contained in:
parent
56ea7fb7f0
commit
2cbbc00489
29 changed files with 382 additions and 131 deletions
|
|
@ -7,7 +7,6 @@ public class AuthServiceException : Exception
|
|||
public AuthServiceException(string message, Exception inner) : base(message, inner) { }
|
||||
}
|
||||
|
||||
[System.Serializable]
|
||||
public class LoginFailedException : AuthServiceException
|
||||
{
|
||||
public LoginFailedException() { }
|
||||
|
|
|
|||
|
|
@ -12,4 +12,11 @@ public class ServerNotFoundException : ServerRepositoryException
|
|||
public ServerNotFoundException() { }
|
||||
public ServerNotFoundException(string message) : base(message) { }
|
||||
public ServerNotFoundException(string message, Exception inner) : base(message, inner) { }
|
||||
}
|
||||
|
||||
public class ServerAlreadyExistsException : ServerRepositoryException
|
||||
{
|
||||
public ServerAlreadyExistsException() { }
|
||||
public ServerAlreadyExistsException(string message) : base(message) { }
|
||||
public ServerAlreadyExistsException(string message, System.Exception inner) : base(message, inner) { }
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue