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

github.com/mono/ikvm-fork.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/JavaException.cs')
-rw-r--r--runtime/JavaException.cs8
1 files changed, 6 insertions, 2 deletions
diff --git a/runtime/JavaException.cs b/runtime/JavaException.cs
index c093c390..e41fad72 100644
--- a/runtime/JavaException.cs
+++ b/runtime/JavaException.cs
@@ -65,9 +65,13 @@ sealed class ClassLoadingException : RetargetableJavaException
{
}
-#if !STATIC_COMPILER && !STUB_GENERATOR
+#if !STATIC_COMPILER && !FIRST_PASS && !STUB_GENERATOR
internal override Exception ToJava()
{
+ if (!(InnerException is java.lang.Error) && !(InnerException is java.lang.RuntimeException))
+ {
+ return new java.lang.NoClassDefFoundError(InnerException.Message).initCause(InnerException);
+ }
return InnerException;
}
#endif
@@ -122,7 +126,7 @@ sealed class ClassNotFoundException : RetargetableJavaException
#if !STATIC_COMPILER && !FIRST_PASS && !STUB_GENERATOR
internal override Exception ToJava()
{
- return new java.lang.ClassNotFoundException(Message);
+ return new java.lang.NoClassDefFoundError(Message);
}
#endif
}