package io.netty.util.concurrent;

/* JADX INFO: loaded from: classes.dex */
public class BlockingOperationException extends IllegalStateException {
    private static final long serialVersionUID = 2462223247762460301L;

    public BlockingOperationException() {
    }

    public BlockingOperationException(String str) {
        super(str);
    }

    public BlockingOperationException(String str, Throwable th) {
        super(str, th);
    }

    public BlockingOperationException(Throwable th) {
        super(th);
    }
}
