* @throws RtfStructureException for illegal RTF structure
*/
public RtfHeader startHeader()
throws IOException, RtfStructureException {
if (header != null) {
throw new RtfStructureException("startHeader called more than once");
}
header = new RtfHeader(this, writer);
listTableContainer = new RtfContainer(this, writer);
return header;
}