| 1 | <?php |
||
| 23 | class IllegalPropertyTypeException extends Exception |
||
| 24 | { |
||
| 25 | /** |
||
| 26 | * Creates the exception, populating its error message from class |
||
| 27 | * and property names, the expected type and the type that was given |
||
| 28 | * |
||
| 29 | * @param string $class The classname accessed |
||
| 30 | * @param string $property The property accessed |
||
| 31 | * @param string $expected The expected type |
||
| 32 | * @param string $got The type that was provided |
||
| 33 | * @param Exception $previous The exception which caused this |
||
| 34 | */ |
||
| 35 | 1 | public function __construct |
|
| 53 | } |
||
| 54 |