Return the rest of the response as a string, usually used to return the arbitrary message text after a NO response. @return the rest of the response
()
| 571 | * @return the rest of the response |
| 572 | */ |
| 573 | public String getRest() { |
| 574 | skipSpaces(); |
| 575 | return toString(buffer, index, size); |
| 576 | } |
| 577 | |
| 578 | /** |
| 579 | * Return the exception for a synthetic BYE response. |
no test coverage detected