File tree Expand file tree Collapse file tree 3 files changed +13
-0
lines changed
common/src/aws/smithy/kotlin/runtime Expand file tree Collapse file tree 3 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,11 @@ public class aws/smithy/kotlin/runtime/ClientException : aws/smithy/kotlin/runti
1515 public fun <init> (Ljava/lang/Throwable;)V
1616}
1717
18+ public abstract interface annotation class aws/smithy/kotlin/runtime/DeprecatedUntilVersion : java/lang/annotation/Annotation {
19+ public abstract fun major ()I
20+ public abstract fun minor ()I
21+ }
22+
1823public class aws/smithy/kotlin/runtime/ErrorMetadata {
1924 public static final field Companion Laws/smithy/kotlin/runtime/ErrorMetadata$Companion;
2025 public fun <init> ()V
Original file line number Diff line number Diff line change @@ -58,3 +58,8 @@ public annotation class ExperimentalApi
5858 */
5959@DslMarker
6060public annotation class SdkDsl
61+
62+ public annotation class DeprecatedUntilVersion (
63+ val major : Int ,
64+ val minor : Int ,
65+ )
Original file line number Diff line number Diff line change 55
66package aws.smithy.kotlin.runtime.smoketests
77
8+ import aws.smithy.kotlin.runtime.DeprecatedUntilVersion
9+
810public expect fun exitProcess (status : Int ): Nothing
911
12+ @DeprecatedUntilVersion(1 , 6 )
1013public class SmokeTestsException (message : String ) : Exception(message)
1114
1215/* *
You can’t perform that action at this time.
0 commit comments