| 12345678910111213141516 |
- <?php
- namespace Path\Exception;
- class IOException extends \Exception
- {
- public function __construct($message = "Read/write error", $code = 0, \Exception $previous = null)
- {
- parent::__construct($message, $code, $previous);
- }
- public function __toString()
- {
- return __CLASS__ . ": [{$this->code}]: {$this->message}\n";
- }
- }
|