diff --git a/packages/react-native/ReactAndroid/api/ReactAndroid.api b/packages/react-native/ReactAndroid/api/ReactAndroid.api index 1cf627dd41e..bdde0ff2883 100644 --- a/packages/react-native/ReactAndroid/api/ReactAndroid.api +++ b/packages/react-native/ReactAndroid/api/ReactAndroid.api @@ -4056,10 +4056,6 @@ public abstract interface class com/facebook/react/uimanager/ReactCompoundViewGr public abstract fun interceptsTouchEvent (FF)Z } -public final class com/facebook/react/uimanager/ReactInvalidPropertyException : java/lang/RuntimeException { - public fun (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V -} - public abstract interface class com/facebook/react/uimanager/ReactOverflowView { public abstract fun getOverflow ()Ljava/lang/String; } diff --git a/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/uimanager/ReactInvalidPropertyException.kt b/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/uimanager/ReactInvalidPropertyException.kt deleted file mode 100644 index 4ae599fad30..00000000000 --- a/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/uimanager/ReactInvalidPropertyException.kt +++ /dev/null @@ -1,16 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ - -package com.facebook.react.uimanager - -public class ReactInvalidPropertyException( - property: String, - value: String, - expectedValues: String -) : - RuntimeException( - "Invalid React property `$property` with value `$value`, expected $expectedValues")