relation = (string) $relation; $this->model = $model; parent::__construct(sprintf( 'Cannot join relation "%s"%s. Relation not found.', $relation, $model ? ' in model ' . get_class($model) : '' )); } /** * Get the relation name * * @return string */ public function getRelation() { return $this->relation; } /** * Get the target model * * @return Model */ public function getModel() { return $this->model; } }