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

17 lines
466 B
Java
Raw Normal View History

2022-03-10 16:56:46 +01:00
// 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-10 16:56:46 +01:00
2022-03-17 15:27:28 +01:00
/**
* Exception that gets thrown when the application is presented with a malformed user-id.
* A malformed user-id is a user-id which does not contain an email address.
*/
2022-03-10 16:56:46 +01:00
public class MalformedUserIdException extends RuntimeException {
public MalformedUserIdException(String message) {
super(message);
}
}