Return LiveData when sending message

This commit is contained in:
Torsten Grote
2021-01-13 12:45:34 -03:00
parent 6ec9a0f2b2
commit c9ede0bfc1
11 changed files with 145 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 {
}