mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-13 03:09:04 +01:00
Changed the root package from net.sf.briar to org.briarproject.
This commit is contained in:
12
briar-api/src/org/briarproject/api/db/DbException.java
Normal file
12
briar-api/src/org/briarproject/api/db/DbException.java
Normal file
@@ -0,0 +1,12 @@
|
||||
package org.briarproject.api.db;
|
||||
|
||||
public class DbException extends Exception {
|
||||
|
||||
private static final long serialVersionUID = 3706581789209939441L;
|
||||
|
||||
public DbException() {}
|
||||
|
||||
public DbException(Throwable t) {
|
||||
super(t);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user