Clean up error handling to make things slightly friendlier on an initial install.
[cfb.git] / prod / net / jaekl / cfb / analyze / FBMsgFileNotFoundException.java
diff --git a/prod/net/jaekl/cfb/analyze/FBMsgFileNotFoundException.java b/prod/net/jaekl/cfb/analyze/FBMsgFileNotFoundException.java
new file mode 100644 (file)
index 0000000..46e8a20
--- /dev/null
@@ -0,0 +1,16 @@
+package net.jaekl.cfb.analyze;
+
+import net.jaekl.cfb.CfbException;
+
+public class FBMsgFileNotFoundException extends CfbException {
+       private static final long serialVersionUID = 1L;
+       
+       private String m_filename;
+
+       public FBMsgFileNotFoundException(String filename) {
+               super(filename);
+               m_filename = filename;
+       }
+       
+       public String getFilename() { return m_filename; }
+}