| 86 | |
| 87 | template <typename... Args> |
| 88 | static string ConstructMessage(const string& msg, Args... params) { |
| 89 | vector<ExceptionFormatValue> values; |
| 90 | return ConstructMessageRecursive(msg, values, params...); |
| 91 | } |
| 92 | |
| 93 | DUCKDB_API static string ConstructMessageRecursive(const string& msg, vector<ExceptionFormatValue>& values); |
| 94 |
nothing calls this directly
no outgoing calls
no test coverage detected