19 lines
380 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|