IDEABKL-6771 Add optional parameter 'exceptionMessage' to @NotNull annotation

This commit is contained in:
VISTALL
2013-04-17 14:11:10 +03:00
parent 33f3792dc3
commit 6eef63fadc
5 changed files with 70 additions and 4 deletions
@@ -0,0 +1,6 @@
import org.jetbrains.annotations.NotNull;
public class SimpleParamWithMessage {
public void test(@NotNull("SimpleParamWithMessage.test(o) cant be null") Object o) {
}
}