Class CommentValidationFailure
- java.lang.Object
-
- com.google.gerrit.extensions.validators.CommentValidationFailure
-
public abstract class CommentValidationFailure extends Object
A comment or review message was rejected by aCommentValidator
.
-
-
Constructor Summary
Constructors Constructor Description CommentValidationFailure()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract CommentForValidation
getComment()
Returns the offending comment.abstract String
getMessage()
A friendly message set by theCommentValidator
.
-
-
-
Method Detail
-
getComment
public abstract CommentForValidation getComment()
Returns the offending comment.
-
getMessage
public abstract String getMessage()
A friendly message set by theCommentValidator
.
-
-