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.
FoxMagiskModuleManager/app/src/main/java/com/fox2code/mmm/utils/FastException.java

16 lines
344 B
Java

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