I created it because I need to use code as below i...
# announcements
p
I created it because I need to use code as below in several places:
Copy code
val parsedValue = tryWithExceptionMapping(
                { someDomainParsingOperation(valueFromHttpRequest) },
                SomeDomainException::class to { SomeHttpEndpointException() },
                AnotherDomainException::class to { AnotherHttpEndpointException() }
        )