
org.openehr.am.template.UnknownTemplateException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of oet-parser Show documentation
Show all versions of oet-parser Show documentation
Java implementation of openEHR OET Template Parser and Flattener
The newest version!
package org.openehr.am.template;
/**
* User: Iago.Corbal
* Date: 2014-05-27
* Time: 14:40
*/
public class UnknownTemplateException extends FlatteningException {
private String templateId;
public UnknownTemplateException(String templateId) {
super("Unknown template: "+templateId);
this.templateId = templateId;
}
public String getTemplateId() {
return templateId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy