/**
  * test PHPRtfLite_Container_Section::setColumnWidths
  * @depends testSetColumnsWidths
  * @expectedException PHPRtfLite_Exception
  */
 public function testSetColumnWidthsExceedingLayoutWidths()
 {
     $this->_section->setPaperWidth(10);
     $expected = array(1.5, 5, 2.3, 2);
     $this->_section->setColumnWidths($expected);
 }