1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2024-10-17 09:42:45 +02:00
TweetDuck/lib/TweetLib.Core/Application/IAppErrorHandler.cs

8 lines
183 B
C#

using System;
namespace TweetLib.Core.Application {
public interface IAppErrorHandler {
void HandleException(string caption, string message, bool canIgnore, Exception e);
}
}