Class OkapiIOException

  • All Implemented Interfaces:
    Serializable

    public class OkapiIOException
    extends OkapiException
    Signals a general IO error. This is generally the result of some kind of IO-related exception occurring inside an Okapi component.
    See Also:
    Serialized Form
    • Constructor Detail

      • OkapiIOException

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

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

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

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