geekbot/Geekbot.net/Lib/ErrorHandling/IErrorHandler.cs

12 lines
No EOL
342 B
C#

using System;
using Discord.Commands;
using Discord.Net;
namespace Geekbot.net.Lib.ErrorHandling
{
public interface IErrorHandler
{
void HandleCommandException(Exception e, ICommandContext context, string errorMessage = "def");
void HandleHttpException(HttpException e, ICommandContext context);
}
}