@Override
protected InputStream getInputStream() {
final String filename = Constants.TEMPLATE;
final InputStream inputStream = this.getClass().getResourceAsStream(filename);
if (null == inputStream) {
throw new TemplatedCodeBlockException("Unable to find template file \"" + filename + "\".");
}
return inputStream;
}