Base: rename Exception's PascalCase methods to camelCase

This commit is contained in:
Ladislav Michl
2025-05-01 10:14:18 +02:00
parent bf4ace0957
commit 9683cf1e4f
128 changed files with 394 additions and 394 deletions

View File

@@ -157,7 +157,7 @@ public:
Exception& operator=(Exception&& inst) noexcept;
virtual const char* what() const noexcept;
virtual void ReportException() const; // once only
virtual void reportException() const; // once only
inline void setMessage(const std::string& message);
// what may differ from the message given by the user in
@@ -242,7 +242,7 @@ public:
FileException(const std::string& message, const FileInfo& File);
const char* what() const noexcept override;
void ReportException() const override;
void reportException() const override;
std::string getFileName() const;
PyObject* getPyObject() override;