function __construct() { parent::__construct(true, false, false, "Item Create Exception", null); }
function __construct() { parent::__construct(null); }
public function __construct($id) { $this->entityName = 'SuluSalesCoreBundle:Item'; $this->id = $id; parent::__construct('The item with the id "' . $this->id . '" was not found.', 0); }
function __construct() { parent::__construct(true, false, false, "Item No Instance Exception", null); }
public function __construct($entityName, $id) { $this->entityName = $entityName; $this->id = $id; parent::__construct('The item dependency "' . $this->entityName . ' with the id "' . $this->id . '" was not found.', 0); }
public function __construct($attribute) { $this->attribute = $attribute; parent::__construct('The attribute with the name "' . $this->attribute . '" is missing.', 0); }