renis-backend/Exceptions/User/UserException.cs
2024-09-07 12:45:00 +03:00

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) { }
}
}