Craig Raw
3 years ago
3 changed files with 36 additions and 1 deletions
@ -0,0 +1,13 @@ |
|||||
|
package com.sparrowwallet.sparrow.event; |
||||
|
|
||||
|
import com.sparrowwallet.drongo.protocol.Transaction; |
||||
|
|
||||
|
public class TransactionFetchFailedEvent extends TransactionReferencesFailedEvent { |
||||
|
public TransactionFetchFailedEvent(Transaction transaction, Throwable exception) { |
||||
|
super(transaction, exception); |
||||
|
} |
||||
|
|
||||
|
public TransactionFetchFailedEvent(Transaction transaction, Throwable exception, int pageStart, int pageEnd) { |
||||
|
super(transaction, exception, pageStart, pageEnd); |
||||
|
} |
||||
|
} |
Loading…
Reference in new issue