I know this is an old question, but I found it as I searched for the answer to this, so I thought I’d share my solution:
In my case I was making an editor module for a plugin I was creating, and I forgot to include one of the Plugin dependencies in my .uplugin file. I was using “UEditorAssetLibrary” that is located in the “EditorScriptingUtilities” Plugin rather than directly in the editor source. It compiled file, no errors, but when I went to run the project it gave me the above error. The solution was to add it to the “Plugins” section of the .uplugin file. In the above question, it would need to be added to the .uproject file:
"Plugins": [
{
"Name": "CISQLite3",
"Enabled": true
},
{
"Name": "EditorScriptingUtilities",
"Enabled": true
}
]