File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed
Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -2747,14 +2747,20 @@ struct ExtraVariablesSystemException <: Exception
27472747 msg:: String
27482748end
27492749function Base. showerror (io:: IO , e:: ExtraVariablesSystemException )
2750- print (io, " ExtraVariablesSystemException: " , e. msg)
2750+ println (io, " ExtraVariablesSystemException: " , e. msg)
2751+ print (io,
2752+ " Note that the process of determining extra variables is a best-effort heuristic. " *
2753+ " The true extra variables are dependent on the model and may not be in this list." )
27512754end
27522755
27532756struct ExtraEquationsSystemException <: Exception
27542757 msg:: String
27552758end
27562759function Base. showerror (io:: IO , e:: ExtraEquationsSystemException )
2757- print (io, " ExtraEquationsSystemException: " , e. msg)
2760+ println (io, " ExtraEquationsSystemException: " , e. msg)
2761+ print (io,
2762+ " Note that the process of determining extra equations is a best-effort heuristic. " *
2763+ " The true extra equations are dependent on the model and may not be in this list." )
27582764end
27592765
27602766struct HybridSystemNotSupportedException <: Exception
You can’t perform that action at this time.
0 commit comments