15 lines
254 B
C#
15 lines
254 B
C#
using System;
|
|
|
|
namespace TelegramBotBase.Base
|
|
{
|
|
public class ErrorResult : EventArgs
|
|
{
|
|
public ErrorResult(Exception exception)
|
|
{
|
|
Exception = exception;
|
|
}
|
|
|
|
public Exception Exception { get; }
|
|
}
|
|
}
|