You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
MagiskModuleManager/app/src/main/java/com/fox2code/mmm/utils/FastException.kt

13 lines
278 B
Kotlin

package com.fox2code.mmm.utils
class FastException private constructor() : RuntimeException() {
@Synchronized
override fun fillInStackTrace(): Throwable {
return this
}
companion object {
@JvmField
val INSTANCE = FastException()
}
}