Create basic WKDCLI implementation

This commit is contained in:
Paul Schaub 2022-02-21 14:16:55 +01:00
parent a006aa11b9
commit 9abe217de0
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311
8 changed files with 168 additions and 30 deletions

View file

@ -0,0 +1,12 @@
// 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();
}
}