Welcome to mirror list, hosted at ThFree Co, Russian Federation.

CodeGenerationFailedException.cs « Compiler « Common « tools « coreclr « src - github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 671bb60ec2eb7aa41455ca8f86912991ba427916 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.

using System;

using Internal.TypeSystem;

namespace ILCompiler
{
    public class CodeGenerationFailedException : InternalCompilerErrorException
    {
        private const string MessageText = "Code generation failed for method '{0}'";

        public MethodDesc Method { get; }

        public CodeGenerationFailedException(MethodDesc method)
            : this(method, null)
        {
        }

        public CodeGenerationFailedException(MethodDesc method, Exception inner)
            : base(string.Format(MessageText, method), inner)
        {
            Method = method;
        }
    }
}