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
2747
2747
msg:: String
2748
2748
end
2749
2749
function 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." )
2751
2754
end
2752
2755
2753
2756
struct ExtraEquationsSystemException <: Exception
2754
2757
msg:: String
2755
2758
end
2756
2759
function 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." )
2758
2764
end
2759
2765
2760
2766
struct HybridSystemNotSupportedException <: Exception
You can’t perform that action at this time.
0 commit comments