idk a lot of changes for the admin stuff
This commit is contained in:
parent
2cbbc00489
commit
5251ca6f99
23 changed files with 576 additions and 15 deletions
|
|
@ -19,4 +19,11 @@ public class AuthAlreadyExistsException : AuthRepositoryException
|
|||
public AuthAlreadyExistsException() { }
|
||||
public AuthAlreadyExistsException(string message) : base(message) { }
|
||||
public AuthAlreadyExistsException(string message, System.Exception inner) : base(message, inner) { }
|
||||
}
|
||||
|
||||
public class UserNotDeletableException : AuthRepositoryException
|
||||
{
|
||||
public UserNotDeletableException() { }
|
||||
public UserNotDeletableException(string message) : base(message) { }
|
||||
public UserNotDeletableException(string message, System.Exception inner) : base(message, inner) { }
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue