1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-05-15 05:34:10 +02:00
TweetDuck/lib/TweetLib.Core/Application/IAppErrorHandler.cs

9 lines
224 B
C#

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