BizHawk/EMU7800/Core/Emu7800SerializationExcepti...

20 lines
428 B
C#
Raw Normal View History

using System;
namespace EMU7800.Core
{
public class Emu7800SerializationException : Emu7800Exception
{
private Emu7800SerializationException()
{
}
internal Emu7800SerializationException(string message) : base(message)
{
}
internal Emu7800SerializationException(string message, Exception ex) : base(message, ex)
{
}
}
}