All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.llamalad7.mixinextras.expression.impl.flow.ComplexDataException Maven / Gradle / Ivy

package com.llamalad7.mixinextras.expression.impl.flow;

public class ComplexDataException extends RuntimeException {
    public static final RuntimeException INSTANCE = new ComplexDataException();

    private ComplexDataException() {
        setStackTrace(new StackTraceElement[0]);
    }

    @Override
    public synchronized Throwable fillInStackTrace() {
        setStackTrace(new StackTraceElement[0]);
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy