renis-backend/Exceptions/User/UserException.cs

14 lines
399 B
C#
Raw Normal View History

2024-09-07 09:45:00 +00:00
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) { }
}
}