Clean up error handling to make things slightly friendlier on an initial install.
[cfb.git] / prod / net / jaekl / cfb / analyze / FBMsgFileNotFoundException.java
1 package net.jaekl.cfb.analyze;
2
3 import net.jaekl.cfb.CfbException;
4
5 public class FBMsgFileNotFoundException extends CfbException {
6         private static final long serialVersionUID = 1L;
7         
8         private String m_filename;
9
10         public FBMsgFileNotFoundException(String filename) {
11                 super(filename);
12                 m_filename = filename;
13         }
14         
15         public String getFilename() { return m_filename; }
16 }