Class OkapiNotImplementedException

  • All Implemented Interfaces:
    Serializable

    public class OkapiNotImplementedException
    extends OkapiException
    Signals that a non-implemented method was called, or a non-implemented feature was invoked. This is generally due to a class that cannot implement a method of an Okapi interface because of specific requirement.
    See Also:
    Serialized Form
    • Constructor Detail

      • OkapiNotImplementedException

        public OkapiNotImplementedException()
        Creates an empty new OkapiNotImplementedException object.
      • OkapiNotImplementedException

        public OkapiNotImplementedException​(String message)
        Creates a new OkapiNotImplementedException object with a given message.
        Parameters:
        message - text of the message.
      • OkapiNotImplementedException

        public OkapiNotImplementedException​(Throwable cause)
        Creates a new OkapiNotImplementedException object with a given parent exception cause.
        Parameters:
        cause - the parent exception cause.
      • OkapiNotImplementedException

        public OkapiNotImplementedException​(String message,
                                            Throwable cause)
        Creates a new OkapiNotImplementedException object with a given message and a given parent exception cause.
        Parameters:
        message - the message.
        cause - the cause.