Delete Emu7800Exception.cs

This commit is contained in:
alyosha-tas 2017-08-29 09:33:45 -04:00 committed by GitHub
parent ae44c8f30e
commit f50945e16e
1 changed files with 0 additions and 19 deletions

View File

@ -1,19 +0,0 @@
using System;
namespace EMU7800.Core
{
public class Emu7800Exception : Exception
{
internal Emu7800Exception()
{
}
internal Emu7800Exception(string message) : base(message)
{
}
internal Emu7800Exception(string message, Exception ex) : base(message, ex)
{
}
}
}