| 1 | <?php |
||
| 13 | class StatementException extends \Exception |
||
| 14 | { |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @var \SwaggerGen\Statement |
||
| 18 | */ |
||
| 19 | private $statement = null; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * |
||
| 23 | * @param string $message |
||
| 24 | * @param int $code |
||
| 25 | * @param \Throwable $previous |
||
| 26 | * @param \SwaggerGen\Statement $statement |
||
| 27 | */ |
||
| 28 | public function __construct($message = "", $code = 0, $previous = null, $statement = null) |
||
| 34 | |||
| 35 | public function getStatement() { |
||
| 38 | |||
| 39 | } |
||
| 40 |