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

github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/linker
diff options
context:
space:
mode:
Diffstat (limited to 'linker')
-rw-r--r--linker/Mono.Linker/LinkContext.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/linker/Mono.Linker/LinkContext.cs b/linker/Mono.Linker/LinkContext.cs
index 4ae929de2..e61187eb5 100644
--- a/linker/Mono.Linker/LinkContext.cs
+++ b/linker/Mono.Linker/LinkContext.cs
@@ -179,8 +179,8 @@ namespace Mono.Linker {
return assembly;
}
- catch {
- throw new AssemblyResolutionException (reference);
+ catch (Exception e) {
+ throw new AssemblyResolutionException (reference, e);
}
}