protected function _initialize()
 {
     if ($this->contact === null || $this->contact === '') {
         throw new Data_Insufficient_Exception('contact');
     }
     if ($this->subject === null || $this->subject === '') {
         throw new Data_Insufficient_Exception('subject');
     }
     parent::_initialize();
 }