QueryError constructor
Creates a new QueryError instance.
The message is required and should describe the query execution issue.
The sqlState and nativeCode are optional and provide additional
diagnostic information from the ODBC driver.
Implementation
const QueryError({
required super.message,
super.sqlState,
super.nativeCode,
});