11 lines
244 B
C#
11 lines
244 B
C#
using System;
|
|
|
|
namespace XWorld.Server.Auth
|
|
{
|
|
public sealed class DuplicateUsernameException : Exception
|
|
{
|
|
public DuplicateUsernameException(string username)
|
|
: base("username already taken: " + username) { }
|
|
}
|
|
}
|