mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-05-15 05:34:10 +02:00
9 lines
224 B
C#
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);
|
|
}
|
|
}
|