Example usage for org.apache.ibatis.executor BatchExecutorException getBatchUpdateException

List of usage examples for org.apache.ibatis.executor BatchExecutorException getBatchUpdateException

Introduction

In this page you can find the example usage for org.apache.ibatis.executor BatchExecutorException getBatchUpdateException.

Prototype

public BatchUpdateException getBatchUpdateException() 

Source Link

Document

Returns the BatchUpdateException that caused the nested executor to fail.

Usage

From source file:com.ibatis.sqlmap.engine.execution.BatchException.java

License:Apache License

public BatchException(BatchExecutorException e) {
    this(e.getMessage(), e.getBatchUpdateException(), e.getSuccessfulBatchResults(), e.getFailingStatementId(),
            e.getFailingSqlStatement());
}