mirror of
https://github.com/chev2/botw-toolset.git
synced 2025-10-30 08:12:17 +00:00
14 lines
463 B
C#
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) { }
|
|
}
|
|
}
|