Added ProtocolStateException for client protocols.

This commit is contained in:
akwizgran
2016-10-27 11:47:53 +01:00
parent 8eeaf4e347
commit ca8d3babaa
9 changed files with 16 additions and 11 deletions

View File

@@ -0,0 +1,11 @@
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 {
}