io.sentry.instrumentation.file.SentryFileWriter Maven / Gradle / Ivy
package io.sentry.instrumentation.file;
import io.sentry.IScopes;
import java.io.File;
import java.io.FileDescriptor;
import java.io.FileNotFoundException;
import java.io.OutputStreamWriter;
import org.jetbrains.annotations.NotNull;
public final class SentryFileWriter extends OutputStreamWriter {
public SentryFileWriter(final @NotNull String fileName) throws FileNotFoundException {
super(new SentryFileOutputStream(fileName));
}
public SentryFileWriter(final @NotNull String fileName, final boolean append)
throws FileNotFoundException {
super(new SentryFileOutputStream(fileName, append));
}
public SentryFileWriter(final @NotNull File file) throws FileNotFoundException {
super(new SentryFileOutputStream(file));
}
public SentryFileWriter(final @NotNull File file, final boolean append)
throws FileNotFoundException {
super(new SentryFileOutputStream(file, append));
}
public SentryFileWriter(final @NotNull FileDescriptor fd) {
super(new SentryFileOutputStream(fd));
}
SentryFileWriter(final @NotNull File file, final boolean append, final @NotNull IScopes scopes)
throws FileNotFoundException {
super(new SentryFileOutputStream(file, append, scopes));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy