Skip to content

Commit b9768a5

Browse files
committed
user friendly error msg (add untested line)
1 parent 09acb67 commit b9768a5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

R/tested.R

+3-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@
55
tested <- function(x) {
66

77
## error handling
8-
stopifnot(is.numeric(x) | is.character(x))
8+
if (!(is.numeric(x) | is.character(x))) {
9+
stop('Wrong object type, only numeric or character is supported.')
10+
}
911

1012
## do something with numbers
1113
if (is.numeric(x)) {

0 commit comments

Comments
 (0)