1: <?php namespace Knot\Exceptions; 2: 3: class WrongArrayPathException extends \Exception { 4: 5: public function __toString() 6: { 7: return __CLASS__ . ":[" . $this->code . "]: Wrong Path. Path: " . $this->message . '\n'; 8: } 9: }