/**
  * @param string $item
  */
 public function __construct($item)
 {
     parent::__construct('Item not found : ' . $item);
 }
Example #2
0
 /**
  * @param string $message
  */
 public function __construct($message)
 {
     parent::__construct('FileSystem : ' . $message);
 }
Example #3
0
 /**
  * @param string $operation
  */
 public function __construct($operation)
 {
     parent::__construct('Illegal operation : ' . $operation);
 }