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.java

16 lines
344 B
Java

package com.fox2code.mmm.utils;
4 years ago
import androidx.annotation.NonNull;
public final class FastException extends RuntimeException {
public static final FastException INSTANCE = new FastException();
private FastException() {}
4 years ago
@NonNull
@Override
public synchronized Throwable fillInStackTrace() {
return this;
4 years ago
}
}