Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions include/SQLiteCpp/Exception.h
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,9 @@ class Exception : public std::runtime_error
const char* getErrorStr() const noexcept; // nothrow

private:
// due to constant members the auto-assignment operator can not be generated
Exception& operator=(const Exception&);

const int mErrcode; ///< Error code value
const int mExtendedErrcode; ///< Detailed error code if any
};
Expand Down