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

package io.netty.handler.codec.quic;

import org.jetbrains.annotations.Nullable;
import java.nio.channels.ClosedChannelException;

public final class QuicClosedChannelException extends ClosedChannelException
{
    private final QuicConnectionCloseEvent event;
    
    QuicClosedChannelException(@Nullable final QuicConnectionCloseEvent event) {
        this.event = event;
    }
    
    @Nullable
    public QuicConnectionCloseEvent event() {
        return this.event;
    }
}
