public function __construct($type, $data = null)
 {
     parent::__construct();
     if (strlen($type) !== 4) {
         throw new Exception("Event types must be exactly 4 characters long.");
     }
     $this->type = $type;
     $this->data = $data;
 }