Bug 740218 - Support transactions in sqlitebridge and use them. r=gcp,rnewman,lucasr

This commit is contained in:
Wes Johnston
2012-04-09 10:08:37 -07:00
parent 4dff44997c
commit 044a5779e1
7 changed files with 284 additions and 47 deletions

View File

@@ -37,11 +37,11 @@
package org.mozilla.gecko.sqlite;
public class SQLiteBridgeException extends Exception {
public class SQLiteBridgeException extends RuntimeException {
static final long serialVersionUID = 1L;
public SQLiteBridgeException() {}
public SQLiteBridgeException(String msg) {
super(msg);
}
}
}