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

com.github.xingshuangs.iot.exceptions.HexParseException Maven / Gradle / Ivy

package com.github.xingshuangs.iot.exceptions;

/**
 * 16进制解析异常
 *
 * @author ShuangPC
 */
public class HexParseException extends RuntimeException {

    public HexParseException() {
        super();
    }

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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy