To cancel the query on local format error.
| 375 | |
| 376 | /// To cancel the query on local format error. |
| 377 | class LocalFormatError : public Exception |
| 378 | { |
| 379 | public: |
| 380 | using Exception::Exception; |
| 381 | |
| 382 | LocalFormatError * clone() const override { return new LocalFormatError(*this); } |
| 383 | void rethrow() const override { throw *this; } /// NOLINT(cert-err60-cpp) |
| 384 | }; |
| 385 | |
| 386 | /// Wrapper for write buffer to execute callback before flush. |
| 387 | /// Used to prevent progress flickering. |
no outgoing calls
no test coverage detected