mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-13 11:19:04 +01:00
10 lines
258 B
Java
10 lines
258 B
Java
package org.briarproject.api.db;
|
|
|
|
/**
|
|
* Thrown when a duplicate contact is added to the database. This exception may
|
|
* occur due to concurrent updates and does not indicate a database error.
|
|
*/
|
|
public class ContactExistsException extends DbException {
|
|
|
|
}
|