wkd-java/wkd-java/src/main/java/pgp/wkd/exception/CertNotFetchableException.java

18 lines
445 B
Java
Raw Normal View History

// SPDX-FileCopyrightText: 2022 Paul Schaub <vanitasvitae@fsfe.org>
//
// SPDX-License-Identifier: Apache-2.0
2022-03-21 11:25:03 +01:00
package pgp.wkd.exception;
2022-03-21 11:25:03 +01:00
/**
* Exception that gets thrown when a certificate cannot be fetched at all.
*/
public class CertNotFetchableException extends RuntimeException {
public static final int ERROR_CODE = 3;
2022-03-21 13:11:00 +01:00
public CertNotFetchableException(String message, Throwable cause) {
super(message, cause);
}
}