Return LiveData when sending message

This commit is contained in:
Torsten Grote
2021-01-13 12:45:34 -03:00
parent 0d3f531545
commit 712f0f7cd9
11 changed files with 146 additions and 68 deletions

View File

@@ -0,0 +1,12 @@
package org.briarproject.briar.api.autodelete;
import org.briarproject.bramble.api.db.DbException;
/**
* Thrown when a database operation is attempted as part of message storing
* and the operation is expecting a different timer state. This
* exception may occur due to concurrent updates and does not indicate a
* database error.
*/
public class UnexpectedTimerException extends DbException {
}