• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

pgpainless / cert-d-java / #5

29 Sep 2025 11:40AM UTC coverage: 83.865% (-1.2%) from 85.102%
#5

push

other

vanitasvitae
Update changelog

421 of 502 relevant lines covered (83.86%)

0.84 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

25.0
/pgp-certificate-store/src/main/java/pgp/certificate_store/exception/BadDataException.java
1
// SPDX-FileCopyrightText: 2022 Paul Schaub <vanitasvitae@fsfe.org>
2
//
3
// SPDX-License-Identifier: Apache-2.0
4

5
package pgp.certificate_store.exception;
6

7
/**
8
 * The data was not a valid OpenPGP cert or key in binary format.
9
 */
10
public class BadDataException extends Exception {
11

12
    @Deprecated // pass cause and/or message
13
    public BadDataException() {
14
        super();
×
15
    }
×
16

17
    public BadDataException(Throwable cause) {
18
        super(cause);
×
19
    }
×
20

21
    public BadDataException(String message, Throwable cause) {
22
        super(message, cause);
×
23
    }
×
24

25
    public BadDataException(String message) {
26
        super(message);
1✔
27
    }
1✔
28
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc