All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.fz.nettyx.exception.BytesUnMatchException Maven / Gradle / Ivy

There is a newer version: 2.3.20-RELEASE
Show newest version
package org.fz.nettyx.exception;

/**
 * @author fengbinbin
 * @since 2021-10-20 21:56
 **/
public class BytesUnMatchException extends RuntimeException {

    public BytesUnMatchException() {
        super();
    }

    public BytesUnMatchException(String message) {
        super(message);
    }

    public BytesUnMatchException(String message, Throwable cause) {
        super(message, cause);
    }

    public BytesUnMatchException(Throwable cause) {
        super(cause);
    }

    protected BytesUnMatchException(String message, Throwable cause,
        boolean enableSuppression,
        boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy