
com.github.ibole.infrastructure.security.certificate.MissingRootCertificateException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of infrastructure-all Show documentation
Show all versions of infrastructure-all Show documentation
The all in one project of ibole infrastructure
The newest version!
package com.github.ibole.infrastructure.security.certificate;
/*********************************************************************************************
* .
*
*
*
* Copyright 2016, iBole Inc. All rights reserved.
*
*
*
*********************************************************************************************/
/**
* Signal not initialized root CA certificate store.
*/
public class MissingRootCertificateException extends IllegalStateException {
private static final long serialVersionUID = -9087082417871920302L;
public MissingRootCertificateException() {
super();
}
public MissingRootCertificateException(String message, Throwable cause) {
super(message, cause);
}
public MissingRootCertificateException(String s) {
super(s);
}
public MissingRootCertificateException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy