public FileSystemBindingHandler(LaunchConfig launchConfig, String path, Handler handler) {
if (launchConfig.isHasBaseDir()) {
this.path = path;
this.handler = handler;
} else {
throw new BaseDirRequiredException("An application base directory is required to use this handler");
}
// TODO - validate the path isn't escaping up with ../
}