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

com.github.dingey.common.BaseFallbackFactory Maven / Gradle / Ivy

There is a newer version: 0.0.5
Show newest version
package com.github.dingey.common;

public class BaseFallbackFactory extends BaseFallback {
    @Override
    public void error(Throwable t, Object... args) {
        super.error(t, args);
    }

    @Override
    public StackTraceElement getTrace() {
        return super.getTrace(5);
    }

    public StackTraceElement getErrorTrace() {
        return super.getTrace(5);
    }

    public Object empty() {
        return super.empty();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy