package kotlinx.coroutines; import java.util.concurrent.CancellationException; /* loaded from: classes5.dex */ public abstract class ExceptionsKt { public static final CancellationException CancellationException(String str, Throwable th) { CancellationException cancellationException = new CancellationException(str); cancellationException.initCause(th); return cancellationException; } }