提交 9f4b6fbc 编写于 作者: E emc

8026011: java.lang.reflect.MalformedParametersException introduces doclint warnings

Summary: Add javadoc comments to members of MalformedParametersException
Reviewed-by: darcy
上级 0119cc00
......@@ -50,10 +50,22 @@ package java.lang.reflect;
*/
public class MalformedParametersException extends RuntimeException {
/**
* Version for serialization.
*/
private static final long serialVersionUID = 20130919L;
/**
* Create a {@code MalformedParametersException} with an empty
* reason.
*/
public MalformedParametersException() {}
/**
* Create a {@code MalformedParametersException}.
*
* @param reason The reason for the exception.
*/
public MalformedParametersException(String reason) {
super(reason);
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册