from ray._common.deprecation import Deprecated


@Deprecated(
    help="The Spec checking APIs have been deprecated and cancelled without "
    "replacement.",
    error=True,
)
class Spec:
    pass


@Deprecated(
    help="The Spec checking APIs have been deprecated and cancelled without "
    "replacement.",
    error=True,
)
class TypeSpec:
    pass


@Deprecated(
    help="The Spec checking APIs have been deprecated and cancelled without "
    "replacement.",
    error=True,
)
class TensorSpec:
    pass
