You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
IOException lacks the secondary constructor public constructor(message: Throwable?). The standard exceptions in the Kotlin stdlib and java.io.IOException (= the JVM actual) all have this constructor.
Would it be possible to add it?
Background: this would let us mechanically (without special casing this constructor) replace java.io.IOException with kotlinx.io.IOException as we migrate our codebase to KMP.
The text was updated successfully, but these errors were encountered:
IOException
lacks the secondary constructorpublic constructor(message: Throwable?)
. The standard exceptions in the Kotlin stdlib andjava.io.IOException
(= the JVM actual) all have this constructor.Would it be possible to add it?
Background: this would let us mechanically (without special casing this constructor) replace java.io.IOException with kotlinx.io.IOException as we migrate our codebase to KMP.
The text was updated successfully, but these errors were encountered: