package io.netty.handler.codec;

/* JADX INFO: loaded from: classes.dex */
public class CorruptedFrameException extends DecoderException {
    private static final long serialVersionUID = 3918052232492988408L;

    public CorruptedFrameException() {
    }

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

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

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