imported patch java-api

--HG--
rename : lang/python/Makefile.am => lang/java/Makefile.am
rename : lang/python/wiredtiger.i => lang/java/wiredtiger.i
This commit is contained in:
Michael Cahill
2012-07-07 01:27:47 +10:00
parent 1fb8798449
commit 5791f5b864
8 changed files with 401 additions and 2 deletions

View File

@@ -0,0 +1,7 @@
package com.wiredtiger.db;
public class DbException extends Exception {
public DbException(String msg) {
super(msg);
}
}