* @copyright Meritoo.pl */ class MissingSurveySummaryException extends \Exception { /** * Class constructor * * @param int $surveyId ID of survey */ public function __construct($surveyId) { $template = 'Summary of survey with ID %d is missing. Does the survey exist?'; $message = sprintf($template, $surveyId); parent::__construct($message); } }