aboutsummaryrefslogtreecommitdiffstats
path: root/security-utils/src/main/java/com/yahoo/security/tls/PeerAuthorizationFailedException.java
blob: 02dbf3bb8e743402475e41b8f6ce25b07a2cb28b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.security.tls;

import java.security.cert.CertificateException;
import java.security.cert.X509Certificate;
import java.util.List;

/**
 * @author bjorncs
 */
public class PeerAuthorizationFailedException extends CertificateException {
    private final List<X509Certificate> certChain;

    public PeerAuthorizationFailedException(String msg, List<X509Certificate> certChain) {
        super(msg);
        this.certChain = certChain;
    }

    public PeerAuthorizationFailedException(String msg) { this(msg, List.of()); }

    public List<X509Certificate> peerCertificateChain() { return certChain; }
}