Home / Class/ DecoderException Class — netty Architecture

DecoderException Class — netty Architecture

Architecture documentation for the DecoderException class in DecoderException.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  1c7b1546_5265_4437_0417_61fd8b880143["DecoderException"]
  7bc2b068_a9a7_7fa9_e270_8996fa50790e["DecoderException.java"]
  1c7b1546_5265_4437_0417_61fd8b880143 -->|defined in| 7bc2b068_a9a7_7fa9_e270_8996fa50790e
  ae9a8e1d_8010_a295_71d8_ee6cc0782dc6["DecoderException()"]
  1c7b1546_5265_4437_0417_61fd8b880143 -->|method| ae9a8e1d_8010_a295_71d8_ee6cc0782dc6

Relationship Graph

Source Code

codec-base/src/main/java/io/netty/handler/codec/DecoderException.java lines 21–51

public class DecoderException extends CodecException {

    private static final long serialVersionUID = 6926716840699621852L;

    /**
     * Creates a new instance.
     */
    public DecoderException() {
    }

    /**
     * Creates a new instance.
     */
    public DecoderException(String message, Throwable cause) {
        super(message, cause);
    }

    /**
     * Creates a new instance.
     */
    public DecoderException(String message) {
        super(message);
    }

    /**
     * Creates a new instance.
     */
    public DecoderException(Throwable cause) {
        super(cause);
    }
}

Frequently Asked Questions

What is the DecoderException class?
DecoderException is a class in the netty codebase, defined in codec-base/src/main/java/io/netty/handler/codec/DecoderException.java.
Where is DecoderException defined?
DecoderException is defined in codec-base/src/main/java/io/netty/handler/codec/DecoderException.java at line 21.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free