1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2024-10-17 09:42:45 +02: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;
}
}
}