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
4 years ago
class FastException private constructor() : RuntimeException() {
@Synchronized
override fun fillInStackTrace(): Throwable {
return this
}
4 years ago
companion object {
@JvmField
val INSTANCE = FastException()
4 years ago
}
}