Skip to content

Commit

Permalink
javadoc and logging improved
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelwechner committed Mar 30, 2013
1 parent 722dc12 commit 5f9bc3c
Showing 1 changed file with 3 additions and 2 deletions.
Expand Up @@ -49,7 +49,8 @@ public ResourceTypeDefinition(File file) throws Exception {
}

/**
*
* Load resource type definition from input stream
* @param in InputStream containing resource type definition
*/
public ResourceTypeDefinition(java.io.InputStream in) {
// TODO: Set configURL
Expand All @@ -63,7 +64,7 @@ public ResourceTypeDefinition(java.io.InputStream in) {
classname = config.getAttribute("class", null);
description = config.getChild("description").getValue();
} catch(Exception e) {
log.error(e);
log.error(e, e);
}
}

Expand Down

0 comments on commit 5f9bc3c

Please sign in to comment.