8 lines
189 B
C#
8 lines
189 B
C#
|
using System;
|
|||
|
|
|||
|
namespace SharpChat.Users.Remote {
|
|||
|
public class UserAuthFailedException : Exception {
|
|||
|
public UserAuthFailedException(string reason) : base(reason) { }
|
|||
|
}
|
|||
|
}
|