org.openmuc.jdlms.FatalJDlmsException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jdlms Show documentation
Show all versions of jdlms Show documentation
jDLMS is a library implementing the DLMS/COSEM (IEC 62056) communication standard.
package org.openmuc.jdlms;
/**
* This Exception denotes, that the a fatal exception has occurred. Connection has been closed.
*/
public class FatalJDlmsException extends JDlmsException {
public FatalJDlmsException(ExceptionId exceptionId, Fault assumedFault, String message) {
super(exceptionId, assumedFault, message);
}
public FatalJDlmsException(ExceptionId exceptionId, Fault assumedFault, String message, Throwable cause) {
super(exceptionId, assumedFault, message, cause);
}
}