botw-toolset/Exceptions/InvalidMagicException.cs
Chev a1a83285f8 Migrate from .NET Framework 4.8 to .NET 5
Also compress Resources/Icons image files, and remove unused entry in App.xaml
2021-01-18 23:33:46 -08:00

14 lines
463 B
C#

using System;
namespace BOTWToolset.Exceptions
{
/// <summary>
/// An exception that's thrown when the magic header in a file is not what was expected.
/// </summary>
class InvalidMagicException : Exception
{
public InvalidMagicException() : base() { }
public InvalidMagicException(string message) : base(message) { }
public InvalidMagicException(string message, Exception inner) : base(message, inner) { }
}
}