mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-07-12 09:04:41 +02:00
12 lines
237 B
C#
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;
|
|
}
|
|
}
|
|
}
|