vks-java/vks-java/src/main/java/pgp/vks/client/exception/CertCannotBePublishedException.java

18 lines
455 B
Java
Raw Normal View History

2022-04-06 00:16:32 +02:00
// SPDX-FileCopyrightText: 2022 Paul Schaub <vanitasvitae@fsfe.org>
//
// SPDX-License-Identifier: Apache-2.0
package pgp.vks.client.exception;
import java.net.ConnectException;
2022-04-11 13:23:32 +02:00
/**
* Exception gets thrown when a public key certificate cannot be published for some reason.
*/
2022-04-06 00:16:32 +02:00
public class CertCannotBePublishedException extends ConnectException {
public CertCannotBePublishedException(String errorMessage) {
super(errorMessage);
}
}