[ONOS-2499]update accordingly for ONOS-2408's review recommendation

Change-Id: I24e7c4acbe38e4286b994c5bf50d22def945fb29
diff --git a/ovsdb/rfc/src/main/java/org/onosproject/ovsdb/rfc/operations/Comment.java b/ovsdb/rfc/src/main/java/org/onosproject/ovsdb/rfc/operations/Comment.java
index c27de6b..2853e1f 100644
--- a/ovsdb/rfc/src/main/java/org/onosproject/ovsdb/rfc/operations/Comment.java
+++ b/ovsdb/rfc/src/main/java/org/onosproject/ovsdb/rfc/operations/Comment.java
@@ -32,7 +32,7 @@
      * @param comment the comment member of comment operation
      */
     public Comment(String comment) {
-        checkNotNull(comment, "comment is not null");
+        checkNotNull(comment, "comment cannot be null");
         this.op = Operations.COMMENT.op();
         this.comment = comment;
     }