| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 7 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 42 | public function __toString()  | 
            ||
| 43 |     { | 
            ||
| 44 |         $str = 'Exception ' . __CLASS__ . " code {$this->code} with message '{$this->message}' in `{$this->file}`" . PHP_EOL; | 
            ||
| 45 | $str .= 'Details: ' . $this->details . PHP_EOL;  | 
            ||
| 46 | $str .= 'Stack trace:' . PHP_EOL . $this->getTraceAsString();  | 
            ||
| 47 | return $str;  | 
            ||
| 48 | }  | 
            ||
| 49 | }  | 
            ||
| 50 |