mirror of
https://codeberg.org/PGPainless/wkd-java.git
synced 2025-09-08 18:59:40 +02:00
12 lines
253 B
Java
12 lines
253 B
Java
// SPDX-FileCopyrightText: 2022 Paul Schaub <vanitasvitae@fsfe.org>
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package pgp.wkd.cli;
|
|
|
|
public class MissingUserIdException extends Exception {
|
|
|
|
public MissingUserIdException() {
|
|
super();
|
|
}
|
|
}
|