| 1 | <?php |
||
| 13 | class SequencingException extends Exception |
||
| 14 | { |
||
| 15 | protected $excerpt = ''; |
||
| 16 | |||
| 17 | protected $byte = 0; |
||
| 18 | |||
| 19 | public function getExcerpt(): string |
||
| 23 | |||
| 24 | public function setExcerpt(string $excerpt): void |
||
| 28 | |||
| 29 | public function getByte(): int |
||
| 33 | |||
| 34 | public function setByte(int $byte): void |
||
| 38 | } |
||
| 39 |