// 
// Decompiled by Procyon v0.6.0
// 

package com.google.common.flogger;

import org.checkerframework.checker.nullness.compatqual.NullableDecl;

public final class LogSiteStackTrace extends Exception
{
    LogSiteStackTrace(@NullableDecl final Throwable cause, final StackSize stackSize, final StackTraceElement[] syntheticStackTrace) {
        super(stackSize.toString(), cause);
        this.setStackTrace(syntheticStackTrace);
    }
    
    @Override
    public Throwable fillInStackTrace() {
        return this;
    }
}
