package com.walker.infrastructure.core; public class FileNotFoundException extends NestedRuntimeException { /** * */ private static final long serialVersionUID = 4424638449214087432L; private String filename; public String getFilename() { return filename; } public FileNotFoundException(){ super("File not found!"); } public FileNotFoundException(Throwable ex){ super("File not found!", ex); } public FileNotFoundException(String filename, Throwable ex){ super("File not found!", ex); this.filename = filename; } }