226227228229230231232233234
} public Field getField(final String name) { final Field method = this.findField(name); if (null == method) { throw new FieldNotFoundException("Unable to find a field called \"" + name + "\" within " + this.getName()); } return method; }