de.tk.opensource.secon.CertificateVerificationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of secon-tool Show documentation
Show all versions of secon-tool Show documentation
A library for secure communication in the German health care and social affairs sector. Based on specifications in 'GKV Anlage 16 SECON'
The newest version!
package de.tk.opensource.secon;
public class CertificateVerificationException extends SeconException {
public CertificateVerificationException(Exception e) {
super(e);
}
public CertificateVerificationException(String message, Throwable cause) {
super(message, cause);
}
public CertificateVerificationException(String message) {
super(message);
}
private static final long serialVersionUID = 0L;
}