Fixed exception

This commit is contained in:
Valentin Kipyatkov
2015-07-29 18:45:16 +03:00
parent 422a9613f1
commit 196cecfe70
5 changed files with 24 additions and 9 deletions
@@ -0,0 +1,6 @@
// "Change visibility modifier" "true"
abstract class C : ClassLoader() {
<caret>private override fun findClass(var1: String): Class<*> {
throw ClassNotFoundException(var1)
}
}