// 
// Decompiled by Procyon v0.6.0
// 

package io.netty.handler.codec.http;

import io.netty.handler.codec.TooLongFrameException;

public final class TooLongHttpLineException extends TooLongFrameException
{
    private static final long serialVersionUID = 1614751125592211890L;
    
    public TooLongHttpLineException() {
    }
    
    public TooLongHttpLineException(final String message, final Throwable cause) {
        super(message, cause);
    }
    
    public TooLongHttpLineException(final String message) {
        super(message);
    }
    
    public TooLongHttpLineException(final Throwable cause) {
        super(cause);
    }
}
