Class NothingWrittenException

  • All Implemented Interfaces:
    java.io.Serializable

    public class NothingWrittenException
    extends WriteException
    An exception which is thrown when one or more write requests resulted in no actual write operation.
    Author:
    Apache MINA Project
    See Also:
    Serialized Form
    • Method Summary

      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • NothingWrittenException

        public NothingWrittenException​(java.util.Collection<WriteRequest> requests,
                                       java.lang.String message,
                                       java.lang.Throwable cause)
        Create a new NothingWrittenException instance
        Parameters:
        requests - The WriteRequests that haven't been written
        message - The error message
        cause - The original exception
      • NothingWrittenException

        public NothingWrittenException​(java.util.Collection<WriteRequest> requests,
                                       java.lang.String message)
        Create a new NothingWrittenException instance
        Parameters:
        requests - The WriteRequests that haven't been written
        message - The error message
      • NothingWrittenException

        public NothingWrittenException​(java.util.Collection<WriteRequest> requests,
                                       java.lang.Throwable cause)
        Create a new NothingWrittenException instance
        Parameters:
        requests - The WriteRequest that haven't been written
        cause - The original exception
      • NothingWrittenException

        public NothingWrittenException​(java.util.Collection<WriteRequest> requests)
        Create a new NothingWrittenException instance
        Parameters:
        requests - The WriteRequest that haven't been written
      • NothingWrittenException

        public NothingWrittenException​(WriteRequest request,
                                       java.lang.String message,
                                       java.lang.Throwable cause)
        Create a new NothingWrittenException instance
        Parameters:
        request - The WriteRequest that hasn't been written
        message - The error message
        cause - The original exception
      • NothingWrittenException

        public NothingWrittenException​(WriteRequest request,
                                       java.lang.String message)
        Create a new NothingWrittenException instance
        Parameters:
        request - The WriteRequest that hasn't been written
        message - The error message
      • NothingWrittenException

        public NothingWrittenException​(WriteRequest request,
                                       java.lang.Throwable cause)
        Create a new NothingWrittenException instance
        Parameters:
        request - The WriteRequest that hasn't been written
        cause - The original exception
      • NothingWrittenException

        public NothingWrittenException​(WriteRequest request)
        Create a new NothingWrittenException instance
        Parameters:
        request - The WriteRequest that hasn't been written