
net.dona.doip.BadDoipException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of doip-sdk Show documentation
Show all versions of doip-sdk Show documentation
DOIP Software Development Kit that implements DOIP v2 Specification.
package net.dona.doip;
import java.io.IOException;
/**
* Exception which indicates a malformed DOIP message.
*/
public class BadDoipException extends IOException {
public BadDoipException(String message) {
super(message);
}
public BadDoipException(Throwable cause) {
super(cause);
}
public BadDoipException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy