/** * Construct the exception. * * @param string $fixture The name of the invalid fixture. */ public function __construct($fixture) { parent::__construct("The parsed data schema for the {$fixture} fixture is not valid. It should be a list of records."); }
/** * Construct the exception. * * @param string $format The unsupported format. */ public function __construct($format) { parent::__construct("Format '{$format}' is not supported. Supported formats are: JSON, CSV, YAML and PHP."); }
/** * Construct the exception. * * @param string $location The location that does not exists. */ public function __construct($location) { parent::__construct("Fixtures location '{$location}' does not exists."); }