From f50945e16e73db30569a35c429db48e64feeb69d Mon Sep 17 00:00:00 2001 From: alyosha-tas Date: Tue, 29 Aug 2017 09:33:45 -0400 Subject: [PATCH] Delete Emu7800Exception.cs --- EMU7800/Core/Emu7800Exception.cs | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 EMU7800/Core/Emu7800Exception.cs diff --git a/EMU7800/Core/Emu7800Exception.cs b/EMU7800/Core/Emu7800Exception.cs deleted file mode 100644 index 18de9a42a4..0000000000 --- a/EMU7800/Core/Emu7800Exception.cs +++ /dev/null @@ -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) - { - } - } -}