mirror of
https://codeberg.org/PGPainless/cert-d-java.git
synced 2025-12-05 04:41:08 +01:00
Add constructor parameters to BadDataException
This commit is contained in:
parent
4079eaa5a4
commit
eaa4e669f8
2 changed files with 14 additions and 0 deletions
|
|
@ -9,4 +9,15 @@ package pgp.certificate_store.exception;
|
|||
*/
|
||||
public class BadDataException extends Exception {
|
||||
|
||||
public BadDataException(Throwable cause) {
|
||||
super(cause);
|
||||
}
|
||||
|
||||
public BadDataException(String message, Throwable cause) {
|
||||
super(message, cause);
|
||||
}
|
||||
|
||||
public BadDataException(String message) {
|
||||
super(message);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue