Remove unused ReactInvalidPropertyException (#50567)

Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/50567

This exception is unused, let's remove it.

Changelog:
[Internal] [Changed] -

Reviewed By: mdvacca

Differential Revision: D72646262

fbshipit-source-id: 728a81633d8c8f7c183b16cfd3a8c4ba68690c42
This commit is contained in:
Nicola Corti
2025-04-08 14:01:20 -07:00
committed by Facebook GitHub Bot
parent 216b297ab8
commit 41f6f6c448
2 changed files with 0 additions and 20 deletions
@@ -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 <init> (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;
}
@@ -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")