Backed out changeset f5d6cc2e4726

This commit is contained in:
Wes Johnston
2012-04-09 10:44:32 -07:00
parent f1b3626866
commit 02d6d4dde0
16 changed files with 58 additions and 328 deletions

View File

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