| 1 | <?php |
||
| 20 | class InvalidCommentID extends \InvalidArgumentException implements Exception { |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Create a new instance of the exception for a comment ID that is not valid. |
||
| 24 | * |
||
| 25 | * @since %VERSION% |
||
| 26 | * |
||
| 27 | * @param int $id Post ID that is not valid. |
||
| 28 | * |
||
| 29 | * @return static |
||
| 30 | */ |
||
| 31 | public static function from_id( $id ) { |
||
| 39 | } |
||
| 40 |