summaryrefslogtreecommitdiff
path: root/process_callback.h
diff options
context:
space:
mode:
Diffstat (limited to 'process_callback.h')
-rw-r--r--process_callback.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/process_callback.h b/process_callback.h
index fcf0384e..cbd9437f 100644
--- a/process_callback.h
+++ b/process_callback.h
@@ -67,7 +67,7 @@ struct ProcessCallback
IGNORE_ERROR = 10,
RETRY
};
- virtual Response reportError (const std::wstring& errorMessage) = 0; //recoverable error situation
+ virtual Response reportError (const std::wstring& errorMessage, size_t retryNumber) = 0; //recoverable error situation
virtual void reportFatalError(const std::wstring& errorMessage) = 0; //non-recoverable error situation
};
bgstack15