[Analysis API FE10] introduce an exception which marks some parts of the Analysis API as not supported for K1

This commit is contained in:
Ilya Kirillov
2023-09-20 22:37:24 +02:00
committed by Space Team
parent 9dcd142f0d
commit 0fb3c033e7
2 changed files with 15 additions and 2 deletions
@@ -0,0 +1,12 @@
/*
* Copyright 2010-2023 JetBrains s.r.o. and Kotlin Programming Language contributors.
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
*/
package org.jetbrains.kotlin.analysis.api
/**
* Exception indicating that a certain operation is not supported for the K1 version of Analysis API
*/
public class NotSupportedForK1Exception : UnsupportedOperationException()