ACCUMULO-532 added IOException to constructor based on change in accumulo trunk

git-svn-id: https://svn.apache.org/repos/asf/accumulo/contrib/bsp/trunk@1339726 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/src/main/java/org/apache/accumulo/bsp/AccumuloOutputFormat.java b/src/main/java/org/apache/accumulo/bsp/AccumuloOutputFormat.java
index 1b0ea81..d9ebbfc 100644
--- a/src/main/java/org/apache/accumulo/bsp/AccumuloOutputFormat.java
+++ b/src/main/java/org/apache/accumulo/bsp/AccumuloOutputFormat.java
@@ -31,7 +31,7 @@
 public class AccumuloOutputFormat extends org.apache.accumulo.core.client.mapreduce.AccumuloOutputFormat implements OutputFormat<Text,Mutation> {
   
   protected static class BSPRecordWriter extends AccumuloRecordWriter implements RecordWriter<Text,Mutation> {
-    BSPRecordWriter(Configuration conf) throws AccumuloException, AccumuloSecurityException {
+    BSPRecordWriter(Configuration conf) throws AccumuloException, AccumuloSecurityException, IOException {
       super(conf);
     }