//----------------------------------------------------------------------------- // // 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) { } } }