In `_response_parser.pony`, the error response field parser maps both `'L'` and `'R'` to `builder.line`:
```pony
| 'L' => builder.line = field_data
| 'R' => builder.line = field_data
```
Per the PostgreSQL protocol, `'R'` is the "Routine" field. The second line should be `builder.routine = field_data`. As a result, `routine` is never populated on `ErrorResponseMessage`.
In `_response_parser.pony`, the error response field parser maps both `'L'` and `'R'` to `builder.line`:
```pony
| 'L' => builder.line = field_data
| 'R' => builder.line = field_data
```
Per the PostgreSQL protocol, `'R'` is the "Routine" field. The second line should be `builder.routine = field_data`. As a result, `routine` is never populated on `ErrorResponseMessage`.