blob: 5aac98af4628eca0e99331d9f3f440fa10882cc9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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) {
}
}
}
|