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

package io.sentry.instrumentation.file;

import io.sentry.IScopes;
import java.io.FileDescriptor;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.InputStream;
import org.jetbrains.annotations.NotNull;
import java.io.InputStreamReader;

public final class SentryFileReader extends InputStreamReader
{
    public SentryFileReader(@NotNull final String fileName) throws FileNotFoundException {
        super(new SentryFileInputStream(fileName));
    }
    
    public SentryFileReader(@NotNull final File file) throws FileNotFoundException {
        super(new SentryFileInputStream(file));
    }
    
    public SentryFileReader(@NotNull final FileDescriptor fd) {
        super(new SentryFileInputStream(fd));
    }
    
    SentryFileReader(@NotNull final File file, @NotNull final IScopes scopes) throws FileNotFoundException {
        super(new SentryFileInputStream(file, scopes));
    }
}
