Added type in VariableTypeFactory

This commit is contained in:
2022-09-11 03:14:08 +08:00
parent c797da3fb0
commit 74261b0287

View File

@@ -574,6 +574,18 @@ val IllegalStateExceptionClass get() = classOf<IllegalStateException>()
*/
val RuntimeExceptionClass get() = classOf<RuntimeException>()
/**
* 获得 [ClassNotFoundException] 类型
* @return [Class]
*/
val ClassNotFoundExceptionClass get() = classOf<ClassNotFoundException>()
/**
* 获得 [NoClassDefFoundError] 类型
* @return [Class]
*/
val NoClassDefFoundErrorClass get() = classOf<NoClassDefFoundError>()
/**
* 获得 [NoSuchMethodError] 类型
* @return [Class]