5sim_Api/5sim_api/Exceptions/NotEnoughUserBalanceException.cs
2020-02-25 11:15:08 +01:00

19 lines
380 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace YoutubeBot._5sim.Exceptions
{
[Serializable]
public class NotEnoughUserBalanceException : Exception
{
public NotEnoughUserBalanceException()
{
}
public NotEnoughUserBalanceException(String message)
: base(message)
{
}
}
}