14 lines
399 B
C#
14 lines
399 B
C#
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Threading.Tasks;
|
||
|
|
||
|
namespace renis_backend.Exceptions.User
|
||
|
{
|
||
|
public class UserException : System.Exception
|
||
|
{
|
||
|
public UserException() { }
|
||
|
public UserException(string message) : base(message) { }
|
||
|
public UserException(string message, System.Exception inner) : base(message, inner) { }
|
||
|
}
|
||
|
}
|