We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a017f8 commit a4f5d7aCopy full SHA for a4f5d7a
1 file changed
src/loss/ML/FIML.jl
@@ -107,9 +107,10 @@ end
107
function SemFIML(; observed::SemObservedMissing, implied, specification, kwargs...)
108
109
if MeanStruct(implied) === NoMeanStruct
110
- throw(ArgumentError(
111
- "Full information maximum likelihood (FIML) can only be used with a meanstructure.
112
- Did you forget to set `Sem(..., meanstructure = true)`?"))
+ ArgumentError(
+ "Full information maximum likelihood (FIML) can only be used with a meanstructure.\n" *
+ "Did you forget to set `Sem(..., meanstructure = true)`?",
113
+ ) |> throw
114
end
115
116
return SemFIML(
0 commit comments