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.
|
package com.fox2code.mmm.utils
|
|
|
|
class FastException private constructor() : RuntimeException() {
|
|
@Synchronized
|
|
override fun fillInStackTrace(): Throwable {
|
|
return this
|
|
}
|
|
|
|
companion object {
|
|
@JvmField
|
|
val INSTANCE = FastException()
|
|
}
|
|
} |