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 d0e4c93 commit 53ca673Copy full SHA for 53ca673
+llms/+utils/errorMessageCatalog.m
@@ -5,7 +5,7 @@
5
6
properties(Constant)
7
%CATALOG dictionary mapping error ids to error msgs
8
- Catalog = buildErrorMessageCatalog();
+ Catalog = buildErrorMessageCatalog;
9
end
10
11
methods(Static)
@@ -31,7 +31,7 @@
31
32
33
34
-function catalog = buildErrorMessageCatalog()
+function catalog = buildErrorMessageCatalog
35
catalog = dictionary("string", "string");
36
catalog("llms:mustBeUnique") = "Values must be unique.";
37
catalog("llms:mustBeVarName") = "Parameter name must begin with a letter and contain not more than 'namelengthmax' characters.";
0 commit comments