12345678910111213141516171819 |
- namespace InABox.Avalonia.Platform;
- public class LatestVersionException : Exception
- {
- public LatestVersionException(string message)
- : base(message)
- {
- }
- public LatestVersionException(Exception innerException)
- : base("", innerException)
- {
- }
- public LatestVersionException(string message, Exception innerException)
- : base(message, innerException)
- {
- }
- }
|