Skip to content

Instantly share code, notes, and snippets.

@przor3n
Created February 3, 2016 21:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save przor3n/0681b625ea2dd5a1a3bf to your computer and use it in GitHub Desktop.
Save przor3n/0681b625ea2dd5a1a3bf to your computer and use it in GitHub Desktop.
class InvalidRowException extends \Exception
{
public static function incorrectColumns(Row $row) {
return new static("Row #" . $row->getIndex() . " is missing one or more columns");
}
}
if (!$row->hasColumns($expectedColumns)) {
throw InvalidRowException::incorrectColumns($row);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment