Skip to content
Snippets Groups Projects
Commit 01c68476 authored by Adam Welc's avatar Adam Welc
Browse files

Added more error messages.

parent a9844262
Branches
No related tags found
No related merge requests found
...@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment