27 lines
951 B
Java
27 lines
951 B
Java
package kotlinx.coroutines;
|
|
|
|
import java.util.concurrent.CancellationException;
|
|
import o.InterfaceC15002geR;
|
|
import o.InterfaceC15034gfD;
|
|
|
|
/* loaded from: classes.dex */
|
|
public final class TimeoutCancellationException extends CancellationException implements InterfaceC15002geR<TimeoutCancellationException> {
|
|
private transient InterfaceC15034gfD e;
|
|
|
|
private TimeoutCancellationException(String str, InterfaceC15034gfD interfaceC15034gfD) {
|
|
super(str);
|
|
this.e = interfaceC15034gfD;
|
|
}
|
|
|
|
@Override // o.InterfaceC15002geR
|
|
public final /* synthetic */ TimeoutCancellationException a() {
|
|
String message = getMessage();
|
|
if (message == null) {
|
|
message = "";
|
|
}
|
|
TimeoutCancellationException timeoutCancellationException = new TimeoutCancellationException(message, this.e);
|
|
timeoutCancellationException.initCause(this);
|
|
return timeoutCancellationException;
|
|
}
|
|
}
|