mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-30 11:02:31 -06:00
35 lines
1.1 KiB
Java
35 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));
|
||
|
}
|
||
|
}
|