mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 18:59:06 +01:00
8 lines
240 B
Java
8 lines
240 B
Java
package org.briarproject.api.db;
|
|
|
|
/** Thrown when a database operation is attempted and the database is closed. */
|
|
public class DbClosedException extends DbException {
|
|
|
|
private static final long serialVersionUID = -3679248177625310653L;
|
|
}
|