mirror of
https://github.com/Qortal/qortal.git
synced 2025-06-07 16:56:59 +00:00
Rolled BlockTransactionRepository into BlockRepository. Added AccountRepository for general account info and account balances. BlockTransformer now takes Block as param instead of BlockData as it needs Block's transactions.
23 lines
380 B
Java
23 lines
380 B
Java
package repository;
|
|
|
|
public class DataException extends Exception {
|
|
|
|
private static final long serialVersionUID = -3963965667288257605L;
|
|
|
|
public DataException() {
|
|
}
|
|
|
|
public DataException(String message) {
|
|
super(message);
|
|
}
|
|
|
|
public DataException(String message, Throwable cause) {
|
|
super(message, cause);
|
|
}
|
|
|
|
public DataException(Throwable cause) {
|
|
super(cause);
|
|
}
|
|
|
|
}
|