mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-01-15 05:42:46 +01:00
8 lines
183 B
C#
8 lines
183 B
C#
using System;
|
|
|
|
namespace TweetLib.Core.Application {
|
|
public interface IAppErrorHandler {
|
|
void HandleException(string caption, string message, bool canIgnore, Exception e);
|
|
}
|
|
}
|