if(schema == null) {
throw new OmhException("The schema is null.");
}
try {
this.schema =
new Concordia(
new ByteArrayInputStream(schema.toString().getBytes()),
controller);
}
catch(IllegalArgumentException e) {
throw new OmhException("The schema is missing.", e);