github.com/altipla-consulting/ravendb-go-client@v0.1.3/bulk_insert_aborted_exception.go (about)

     1  package ravendb
     2  
     3  // BulkInsertAbortedError represents "bulk insert aborted" error
     4  type BulkInsertAbortedError struct {
     5  	RavenError
     6  }
     7  
     8  func newBulkInsertAbortedError(format string, args ...interface{}) *BulkInsertAbortedError {
     9  	res := &BulkInsertAbortedError{
    10  		RavenError: *newRavenError(format, args...),
    11  	}
    12  	return res
    13  }