Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
appinventor-sources
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
xpstem
appinventor-sources
Commits
5cbfd9d2
Commit
5cbfd9d2
authored
Feb 15, 2019
by
nicholec
Committed by
Evan W. Patton
Feb 15, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Hold number for Augmented Reality Error Messages
parent
28904226
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
appinventor/components/src/com/google/appinventor/components/runtime/util/ErrorMessages.java
...le/appinventor/components/runtime/util/ErrorMessages.java
+8
-1
No files found.
appinventor/components/src/com/google/appinventor/components/runtime/util/ErrorMessages.java
View file @
5cbfd9d2
...
...
@@ -248,7 +248,10 @@ public final class ErrorMessages {
// REPL Errors
public
static
final
int
ERROR_UNABLE_TO_INSTALL_PACKAGE
=
3601
;
// Start the next group of errors at 3700
// Augmented Reality Errors
public
static
final
int
ERROR_INVALID_CONFIGURATION_VALUE
=
3700
;
// Start the next group of errors at 3800
// Mapping of error numbers to error message format strings.
private
static
final
Map
<
Integer
,
String
>
errorMessages
;
...
...
@@ -621,6 +624,10 @@ public final class ErrorMessages {
// REPL errors
errorMessages
.
put
(
ERROR_UNABLE_TO_INSTALL_PACKAGE
,
"Unable to launch the package installer for %1$s."
);
// Augmented Reality errors
errorMessages
.
put
(
ERROR_INVALID_CONFIGURATION_VALUE
,
"Invalid value %1$d given for ARConfigurationType. Valid settings are 1, 2, or 3."
);
}
private
ErrorMessages
()
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment