1 package com.atlassian.asap.core.exception;
2
3 import com.atlassian.asap.api.exception.CannotRetrieveKeyException;
4 import com.atlassian.asap.core.validator.ValidatedKeyId;
5
6 import java.net.URI;
7
8 /**
9 * Thrown when the public key is reported as absent from the key repository.
10 *
11 * @see PublicKeyRetrievalException
12 */
13 public class PublicKeyNotFoundException extends CannotRetrieveKeyException {
14 public PublicKeyNotFoundException(String reason, ValidatedKeyId keyId, URI keyUri) {
15 super(reason, keyId, keyUri);
16 }
17 }