package io.netty.handler.ssl;

import javax.net.ssl.SSLException;

/* JADX INFO: loaded from: classes.dex */
public class NotSslRecordException extends SSLException {
    private static final long serialVersionUID = -4316784434770656841L;

    public NotSslRecordException() {
        super("");
    }

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

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

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