mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-13 03:09:04 +01:00
12 lines
302 B
Java
12 lines
302 B
Java
package org.briarproject.api.clients;
|
|
|
|
import org.briarproject.api.db.DbException;
|
|
|
|
/**
|
|
* Thrown when a database operation is attempted as part of a protocol session
|
|
* and the operation is not applicable to the current protocol state.
|
|
*/
|
|
public class ProtocolStateException extends DbException {
|
|
|
|
}
|