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

com.github.pires.obd.exceptions.NonNumericResponseException Maven / Gradle / Ivy

package com.github.pires.obd.exceptions;

/**
 * Thrown when there are no numbers in the response and they are expected
 */
public class NonNumericResponseException extends RuntimeException {

    /**
     * @param message a {@link java.lang.String} object.
     */
    public NonNumericResponseException(String message) {
        super("Error reading response: " + message);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy