try {
// Create the folder
FileObject designDir = _dir.resolveFile(designName);
if (designDir.exists()) {
throw new WGADesignCreationException("A directory of name '" + designName + "' already exists");
}
designDir.createFolder();
// Nuffin else to do .... initial deploy will do the rest
}
catch (Exception e) {
throw new WGADesignCreationException("Exception creating file system design '" + designName + "'", e);
}
}