Can kotlin merge multiple exceptions in one catch?
# announcements
p
Can kotlin merge multiple exceptions in one catch?
v
paulwoitaschek: not yet
p
That's annoying 😞
Copy code
try {
          ...
        } catch (e: IOException) {
          Timber.e(e, "Error while creating recipe")
          showUploadFailed()
        } catch (e: HttpException) {
          Timber.e(e, "Error while creating recipe")
          showUploadFailed()
        }
Is there a KEEP?