Skip to content
Snippets Groups Projects
Commit 142235cd authored by Nelson Tavares de Sousa's avatar Nelson Tavares de Sousa
Browse files

modded exception handling in ByteArrayFileWriter

parent ed3d9ead
Branches
No related tags found
No related merge requests found
...@@ -19,7 +19,7 @@ public class ByteArrayFileWriter extends ConsumerStage<byte[]> { ...@@ -19,7 +19,7 @@ public class ByteArrayFileWriter extends ConsumerStage<byte[]> {
Files.touch(file); Files.touch(file);
fo = new FileOutputStream(this.file); fo = new FileOutputStream(this.file);
} catch (IOException e) { } catch (IOException e) {
e.printStackTrace(); throw new IllegalStateException(e);
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment