Class SqlSkippedException

  • All Implemented Interfaces:
    java.io.Serializable

    public class SqlSkippedException
    extends SqlException
    A SqlException that is used to complete an Operation when that Operation is skipped. If an Operation is skipped the Operation is removed from the head of the queue, no work is sent to the database and the CompletionStage of that Operation is completed exceptionally with a SqlSkippedException. The cause of the SqlSkippedException is the Throwable that caused the Operation to be skipped, if any.
    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

      • SqlSkippedException

        public SqlSkippedException​(java.lang.String message,
                                   java.lang.Throwable cause,
                                   java.lang.String sqlState,
                                   int vendorCode,
                                   java.lang.String sql,
                                   int position)
        Parameters:
        message -
        cause -
        sqlState -
        vendorCode -
        sql -
        position -
      • SqlSkippedException

        public SqlSkippedException​(SqlException cause)
        Parameters:
        cause -
      • SqlSkippedException

        public SqlSkippedException​(java.lang.Throwable cause)
        Parameters:
        cause -