Code Duplication    Length = 2-2 lines in 2 locations

src/RandomOrgAPI.php 2 locations

@@ 234-235 (lines=2) @@
231
                            'Invalid arguments: ' . $body['error']['message'],
232
                            $body['error']['code']
233
                        );
234
                    case -32603:
235
                        throw new \RuntimeException(
236
                            'Internal Error: ' . $body['error']['message'],
237
                            $body['error']['code']
238
                        );
@@ 239-240 (lines=2) @@
236
                            'Internal Error: ' . $body['error']['message'],
237
                            $body['error']['code']
238
                        );
239
                    default:
240
                        throw new \RuntimeException(
241
                            'Invalid request/response: ' . $body['error']['message'],
242
                            $body['error']['code']
243
                        );