Preconditions 帮助程序员编写程序中的错误处理. @Test public void test1(){ Preconditions.checkNotNull(null, "element is not allowed to null"); // 第一个参数为要检测的参数, 第二个参数为要抛出的错误信息 }