Class UnregisteredClassException

  • All Implemented Interfaces:
    Serializable

    public class UnregisteredClassException
    extends IgniteException
    Exception thrown during serialization if class isn't registered and it's registration isn't allowed.
    See Also:
    Serialized Form
    • Constructor Detail

      • UnregisteredClassException

        public UnregisteredClassException​(Class cls)
        Parameters:
        cls - Class that isn't registered.
      • UnregisteredClassException

        public UnregisteredClassException​(String msg,
                                          Class cls)
        Parameters:
        msg - Error message.
        cls - Class that isn't registered.
      • UnregisteredClassException

        public UnregisteredClassException​(Throwable cause,
                                          Class cls)
        Parameters:
        cause - Exception cause.
        cls - Class that isn't registered.
      • UnregisteredClassException

        public UnregisteredClassException​(String msg,
                                          @Nullable
                                          @Nullable Throwable cause,
                                          Class cls)
        Parameters:
        msg - Error message.
        cause - Exception cause.
        cls - Class that isn't registered.
    • Method Detail

      • cls

        public Class cls()
        Returns:
        Class that isn't registered.