Code Duplication    Length = 2-2 lines in 2 locations

src/RandomOrgAPI.php 2 locations

@@ 200-201 (lines=2) @@
197
                            'Invalid arguments: ' . $body['error']['message'],
198
                            $body['error']['code']
199
                        );
200
                    case -32603:
201
                        throw new \RuntimeException(
202
                            'Internal Error: ' . $body['error']['message'],
203
                            $body['error']['code']
204
                        );
@@ 205-206 (lines=2) @@
202
                            'Internal Error: ' . $body['error']['message'],
203
                            $body['error']['code']
204
                        );
205
                    default:
206
                        throw new \RuntimeException(
207
                            'Invalid request/response: ' . $body['error']['message'],
208
                            $body['error']['code']
209
                        );