C-WORD-ORDER requires that errors be named `VerbNounError`. However, this doesn't work for cases where there is no verb, for example in getters: ```rust impl Response { fn bytes(self) -> Result<Vec<u8>, /* ? */> { ... } } ``` What should be done in this case?