Files
2023-03-01 23:18:47 +00:00

26 lines
482 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace X86Emulator
{
internal class EmulatorException : Exception
{
public EmulatorException()
{
}
public EmulatorException(string message)
: base(message)
{
}
public EmulatorException(string message, Exception inner)
: base(message, inner)
{
}
}
}