runtime-jvm: add actual modifiers where required
This commit is contained in:
@@ -14,14 +14,16 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress("ACTUAL_WITHOUT_EXPECT") // for building kotlin-runtime
|
||||
|
||||
package kotlin
|
||||
|
||||
public open class NoWhenBranchMatchedException : RuntimeException {
|
||||
constructor()
|
||||
public actual open class NoWhenBranchMatchedException : RuntimeException {
|
||||
actual constructor()
|
||||
|
||||
constructor(message: String?) : super(message)
|
||||
actual constructor(message: String?) : super(message)
|
||||
|
||||
constructor(message: String?, cause: Throwable?) : super(message, cause)
|
||||
actual constructor(message: String?, cause: Throwable?) : super(message, cause)
|
||||
|
||||
constructor(cause: Throwable?) : super(cause)
|
||||
actual constructor(cause: Throwable?) : super(cause)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user