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

Added error messages.

parent d10f7516
Branches
No related tags found
No related merge requests found
......@@ -708,7 +708,10 @@ public final class RError extends RuntimeException {
BAD_ENVIRONMENT("bad %s environment argument"),
CANNOT_BE_LENGTH("'%s' cannot be of length %d"),
SECOND_ARGUMENT_LIST("second argument must be a list"),
DOES_NOT_HAVE_DIMNAMES("'%s' does not have named dimnames");
DOES_NOT_HAVE_DIMNAMES("'%s' does not have named dimnames"),
ATTEMPT_TO_REPLICATE("attempt to replicate an object of type '%s'"),
ATTEMPT_TO_REPLICATE_NO_VECTOR("attempt to replicate non-vector"),
INCORRECT_ARG_TYPE("incorrect type for %s argument");
public final String message;
final boolean hasArgs;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment