level = $level; $this->status = $status; parent::__construct($message); } /** * Gets the level. * * @return int * An integer status code. @see Migration::MESSAGE_* */ public function getLevel() { return $this->level; } /** * Gets the status of the current item. * * @return int * An integer status code. @see MigrateMap::STATUS_* */ public function getStatus() { return $this->status; } }