this.deployable = deployable;
DocumentBuilder parser = null;
try {
parser = DocumentBuilderFactory.newInstance().newDocumentBuilder();
} catch (ParserConfigurationException e) {
throw (DDBeanCreateException) new DDBeanCreateException("Unable to load parser").initCause(e);
}
InputStream is = null;
try {
is = descriptor.openStream();
doc = parser.parse(is);
} catch (Exception e) {
throw (DDBeanCreateException) new DDBeanCreateException("Unable to parse descriptor").initCause(e);
} finally {
if (is != null) {
try {
is.close();
} catch (IOException e) {