Files
briar/components/net/sf/briar/db/DbStateException.java
akwizgran 5fd87647f8 Replaced assertions with exceptions in database code, and changed
exception handling so that database connections aren't closed with
transactions in progress - this should make it possible to close the
database cleanly if an exception occurs.
2011-08-03 18:23:47 +01:00

10 lines
228 B
Java

package net.sf.briar.db;
import java.sql.SQLException;
/** Thrown when the database is in an illegal state. */
class DbStateException extends SQLException {
private static final long serialVersionUID = 10793396057218891L;
}