summaryrefslogtreecommitdiff
path: root/BCT/BytecodeTranslator/TranslationException.cs
diff options
context:
space:
mode:
Diffstat (limited to 'BCT/BytecodeTranslator/TranslationException.cs')
-rw-r--r--BCT/BytecodeTranslator/TranslationException.cs27
1 files changed, 0 insertions, 27 deletions
diff --git a/BCT/BytecodeTranslator/TranslationException.cs b/BCT/BytecodeTranslator/TranslationException.cs
deleted file mode 100644
index c62d78c5..00000000
--- a/BCT/BytecodeTranslator/TranslationException.cs
+++ /dev/null
@@ -1,27 +0,0 @@
-//-----------------------------------------------------------------------------
-//
-// Copyright (C) Microsoft Corporation. All Rights Reserved.
-//
-//-----------------------------------------------------------------------------
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-
-namespace BytecodeTranslator {
- public enum ExceptionType {
- UnresolvedMethod,
- UnresolvedType,
- };
-
- public class TranslationException : Exception {
-
- public TranslationException(string reason) : base(reason) {
- }
-
- public TranslationException(ExceptionType eType, string message)
- : base(eType.ToString() + ": " + message) {
- }
-
- }
-}