java.security.cert.CertificateException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jtransc-rt Show documentation
Show all versions of jtransc-rt Show documentation
JVM AOT compiler currently generating JavaScript, C++, Haxe, with initial focus on Kotlin and games.
package java.security.cert;
import java.security.GeneralSecurityException;
public class CertificateException extends GeneralSecurityException {
public CertificateException() {
super();
}
public CertificateException(String msg) {
super(msg);
}
public CertificateException(String message, Throwable cause) {
super(message, cause);
}
public CertificateException(Throwable cause) {
super(cause);
}
}