Boo.Lang.Compiler.CompilerErrorFactory.FailedToLoadTypesFromAssembly C# (CSharp) Method

FailedToLoadTypesFromAssembly() public static method

public static FailedToLoadTypesFromAssembly ( string assemblyName, Exception x ) : CompilerError
assemblyName string
x System.Exception
return CompilerError
        public static CompilerError FailedToLoadTypesFromAssembly(string assemblyName, Exception x)
        {
            return Instantiate("BCE0106", LexicalInfo.Empty, x, assemblyName);
        }
CompilerErrorFactory