diff --git a/src/fitting/methods.jl b/src/fitting/methods.jl index 1f277ccd..0b91ca49 100644 --- a/src/fitting/methods.jl +++ b/src/fitting/methods.jl @@ -73,12 +73,8 @@ function fit( σ = try LsqFit.standard_errors(lsq_result) catch e - if e isa LinearAlgebra.SingularException || e isa LinearAlgebra.LAPACKException - @warn "No parameter uncertainty estimation due to error: $e" - nothing - else - throw(e) - end + @warn "No parameter uncertainty estimation due to error: $e" + nothing end y = _f_objective(config)(config.model_domain, params)