We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44659cf commit d156499Copy full SHA for d156499
src/DataBlobs/services/BlobEntry.jl
@@ -74,7 +74,7 @@ end
74
75
function getBlobentry(var::VariableDFG, key::Symbol)
76
if !hasBlobentry(var, key)
77
- throw(DFGLabelError(key))
+ throw(DFGLabelNotFoundError(key))
78
end
79
return var.blobEntries[findfirst(x -> x.label == key, var.blobEntries)]
80
src/errors.jl
@@ -57,4 +57,4 @@ end
57
58
function Base.showerror(io::IO, ex::DFGSerializationError)
59
return print(io, "DFGSerializationError: ", ex.msg)
60
-end
+end
0 commit comments