5 lines
155 B
C#
5 lines
155 B
C#
|
namespace SharpChat.Users;
|
||
|
|
||
|
public class UserNotFoundException(string argName)
|
||
|
: ArgumentException("A user with that id already exists.", argName) { }
|