com.github.pires.obd.exceptions.NonNumericResponseException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of obd-java-api Show documentation
Show all versions of obd-java-api Show documentation
OBD Java API compatible with ELM327.
package com.github.pires.obd.exceptions;
/**
* Thrown when there are no numbers in the response and they are expected
*
* @author pires
* @version $Id: $Id
*/
public class NonNumericResponseException extends RuntimeException {
/**
* Constructor for NonNumericResponseException.
*
* @param message a {@link java.lang.String} object.
*/
public NonNumericResponseException(String message) {
super("Error reading response: " + message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy