Skip to content

Commit

Permalink
Improve AppendTo error message
Browse files Browse the repository at this point in the history
  • Loading branch information
guusw committed Nov 23, 2023
1 parent 4e3f8bb commit a866e97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shards/modules/core/core.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -582,7 +582,7 @@ struct AppendTo : public XpendTo {
cloneVar(collection, tmp);
} break;
default:
throw ActivationError("AppendTo, case not implemented");
throw ActivationError(fmt::format("AppendTo, case not implemented for type {}", collection.valueType));
}
return input;
}
Expand Down

0 comments on commit a866e97

Please sign in to comment.