aboutsummaryrefslogtreecommitdiff
path: root/common/src/main/java/org/conscrypt/HpkeDecryptException.java
blob: 7e9784cd56fbc7f49052efcf1ad8df2ede468ca1 (plain)
1
2
3
4
5
6
7
8
9
10
11
package org.conscrypt;

import java.security.GeneralSecurityException;

public class HpkeDecryptException extends GeneralSecurityException {
    private static final long serialVersionUID = 5903211285098828754L;

    public HpkeDecryptException(String msg) {
        super(msg);
    }
}