Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Q
QueryR
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Julien Lopez
QueryR
Commits
01c68476
Commit
01c68476
authored
8 years ago
by
Adam Welc
Browse files
Options
Downloads
Patches
Plain Diff
Added more error messages.
parent
a9844262
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
com.oracle.truffle.r.runtime/src/com/oracle/truffle/r/runtime/RError.java
+5
-1
5 additions, 1 deletion
...le.r.runtime/src/com/oracle/truffle/r/runtime/RError.java
with
5 additions
and
1 deletion
com.oracle.truffle.r.runtime/src/com/oracle/truffle/r/runtime/RError.java
+
5
−
1
View file @
01c68476
...
@@ -721,7 +721,11 @@ public final class RError extends RuntimeException {
...
@@ -721,7 +721,11 @@ public final class RError extends RuntimeException {
ATTEMPT_TO_REPLICATE
(
"attempt to replicate an object of type '%s'"
),
ATTEMPT_TO_REPLICATE
(
"attempt to replicate an object of type '%s'"
),
ATTEMPT_TO_REPLICATE_NO_VECTOR
(
"attempt to replicate non-vector"
),
ATTEMPT_TO_REPLICATE_NO_VECTOR
(
"attempt to replicate non-vector"
),
INCORRECT_ARG_TYPE
(
"incorrect type for %s argument"
),
INCORRECT_ARG_TYPE
(
"incorrect type for %s argument"
),
INVALID_ARG_OF_LENGTH
(
"invalid %s argument of length %d"
);
INVALID_ARG_OF_LENGTH
(
"invalid %s argument of length %d"
),
INVALID_FILENAME_PATTERN
(
"invalid filename pattern"
),
INVALID_FILE_EXT
(
"invalid file extension"
),
NO
(
"no '%s'"
),
APPLIES_TO_VECTORS
(
"%s applies only to vectors"
);
public
final
String
message
;
public
final
String
message
;
final
boolean
hasArgs
;
final
boolean
hasArgs
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment