| 1 | <?php |
||
| 7 | class SerializeException extends \Exception |
||
| 8 | { |
||
| 9 | |||
| 10 | /** |
||
| 11 | * @param string $filepath |
||
| 12 | * |
||
| 13 | * @return SerializeException |
||
| 14 | */ |
||
| 15 | public static function cantUnserialize(string $filepath) |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @param string $classname |
||
| 22 | * |
||
| 23 | * @return SerializeException |
||
| 24 | */ |
||
| 25 | public static function cantSerialize(string $classname) |
||
| 29 | |||
| 30 | } |
||
| 31 |