mirror of
https://codeberg.org/PGPainless/vks-java.git
synced 2025-09-08 10:49:39 +02:00
17 lines
455 B
Java
17 lines
455 B
Java
// SPDX-FileCopyrightText: 2022 Paul Schaub <vanitasvitae@fsfe.org>
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package pgp.vks.client.exception;
|
|
|
|
import java.net.ConnectException;
|
|
|
|
/**
|
|
* Exception gets thrown when a public key certificate cannot be published for some reason.
|
|
*/
|
|
public class CertCannotBePublishedException extends ConnectException {
|
|
|
|
public CertCannotBePublishedException(String errorMessage) {
|
|
super(errorMessage);
|
|
}
|
|
}
|