mirror of
https://codeberg.org/PGPainless/cert-d-java.git
synced 2025-12-05 04:41:08 +01:00
BadDataException: Pass in throwable cause/message
This commit is contained in:
parent
b4683292f8
commit
9d85141f32
3 changed files with 17 additions and 8 deletions
|
|
@ -9,6 +9,11 @@ package pgp.certificate_store.exception;
|
|||
*/
|
||||
public class BadDataException extends Exception {
|
||||
|
||||
@Deprecated // pass cause and/or message
|
||||
public BadDataException() {
|
||||
super();
|
||||
}
|
||||
|
||||
public BadDataException(Throwable cause) {
|
||||
super(cause);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue