mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
21 lines
637 B
Java
21 lines
637 B
Java
|
package io.sentry.exception;
|
||
|
|
||
|
/* loaded from: classes3.dex */
|
||
|
public final class InvalidSentryTraceHeaderException extends Exception {
|
||
|
private static final long serialVersionUID = -8353316997083420940L;
|
||
|
private final String sentryTraceHeader;
|
||
|
|
||
|
public String getSentryTraceHeader() {
|
||
|
return this.sentryTraceHeader;
|
||
|
}
|
||
|
|
||
|
public InvalidSentryTraceHeaderException(String str) {
|
||
|
this(str, null);
|
||
|
}
|
||
|
|
||
|
public InvalidSentryTraceHeaderException(String str, Throwable th) {
|
||
|
super("sentry-trace header does not conform to expected format: " + str, th);
|
||
|
this.sentryTraceHeader = str;
|
||
|
}
|
||
|
}
|