1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-01-15 05:42:46 +01:00
TweetDuck/lib/TweetLib.Core/Application/AppException.cs

12 lines
237 B
C#

using System;
namespace TweetLib.Core.Application {
public sealed class AppException : Exception {
public string Title { get; }
internal AppException(string title, string message) : base(message) {
this.Title = title;
}
}
}