if( ! version.startsWith( VERSION_NUMBER ) ) {
if( version.startsWith( "0." ) ) {
// attempt version in same major version
}
else {
throw new TemplateException( TemplateException.CODE_bad_version,
new String[] { "template_version", version, "expected_version", VERSION_NUMBER } );
}
}
}
}