13 lines
299 B
C#
13 lines
299 B
C#
using System;
|
|
|
|
namespace TelegramBotBase.Exceptions;
|
|
|
|
public sealed class MaximumColsException : Exception
|
|
{
|
|
public int Value { get; set; }
|
|
public int Maximum { get; set; }
|
|
|
|
public override string Message =>
|
|
$"You have exceeded the maximum of columns by {Value}/{Maximum}";
|
|
}
|