Rabbit-R1/original r1/java/sources/io/sentry/instrumentation/file/SentryFileWriter.java
2024-05-21 17:08:36 -04:00

34 lines
1.1 KiB
Java

package io.sentry.instrumentation.file;
import io.sentry.IHub;
import java.io.File;
import java.io.FileDescriptor;
import java.io.FileNotFoundException;
import java.io.OutputStreamWriter;
/* loaded from: classes3.dex */
public final class SentryFileWriter extends OutputStreamWriter {
public SentryFileWriter(String str) throws FileNotFoundException {
super(new SentryFileOutputStream(str));
}
public SentryFileWriter(String str, boolean z) throws FileNotFoundException {
super(new SentryFileOutputStream(str, z));
}
public SentryFileWriter(File file) throws FileNotFoundException {
super(new SentryFileOutputStream(file));
}
public SentryFileWriter(File file, boolean z) throws FileNotFoundException {
super(new SentryFileOutputStream(file, z));
}
public SentryFileWriter(FileDescriptor fileDescriptor) {
super(new SentryFileOutputStream(fileDescriptor));
}
SentryFileWriter(File file, boolean z, IHub iHub) throws FileNotFoundException {
super(new SentryFileOutputStream(file, z, iHub));
}
}