original version was as follows: ``` val p...
# announcements
p
original version was as follows:
Copy code
val parsedValue = try {
            someDomainParsingOperation(valueFromHttpRequest)
        } catch (e: SomeDomainException) {
            throw SomeHttpEndpointException()
        } catch (e: AnotherDomainException) {
            throw AnotherHttpEndpointException()
        }