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.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/BCT/BytecodeTranslator/TranslationException.cs b/BCT/BytecodeTranslator/TranslationException.cs
new file mode 100644
index 00000000..5aac98af
--- /dev/null
+++ b/BCT/BytecodeTranslator/TranslationException.cs
@@ -0,0 +1,20 @@
+//-----------------------------------------------------------------------------
+//
+// Copyright (C) Microsoft Corporation. All Rights Reserved.
+//
+//-----------------------------------------------------------------------------
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+
+namespace BytecodeTranslator {
+ class TranslationException : Exception {
+
+ public TranslationException(string reason) {
+
+ }
+
+
+ }
+}