Package oracle.soda

Class OracleBatchException

    • Constructor Detail

      • OracleBatchException

        public OracleBatchException​(String message)
        Constructs an OracleBatchException object with a given message.
        Parameters:
        message - the description of the error. null if message string is non-existent
      • OracleBatchException

        public OracleBatchException​(String message,
                                    int processedCount)
        Constructs an OracleBatchException object with a given message.
        Parameters:
        message - the description of the error. null if message string is non-existent
        processedCount - number of operations processed before the error occurred
      • OracleBatchException

        public OracleBatchException​(String message,
                                    int errorCode,
                                    int processedCount)
        Constructs an OracleBatchException with a given message and an error code.
        Parameters:
        message - the description of the error. null indicates that the message string is non-existant
        errorCode - the error code
        processedCount - number of operations processed before the error occurred
      • OracleBatchException

        public OracleBatchException​(Throwable cause)
        Constructs an OracleBatchException object with a given cause.
        Parameters:
        cause - the cause of the error. null if non-existent
      • OracleBatchException

        public OracleBatchException​(Throwable cause,
                                    int processedCount)
        Constructs an OracleBatchException object with a given cause.
        Parameters:
        cause - the cause of the error. null if non-existent
        processedCount - number of operations processed before the error occurred
    • Method Detail

      • getProcessedCount

        public int getProcessedCount()
        Number of operations processed before the error occurred.
        Returns:
        number of operations processed before the error occurred