码迷,mamicode.com
首页 > 编程语言 > 详细

Spring Assert.notNull

时间:2016-09-14 16:54:50      阅读:482      评论:0      收藏:0      [点我收藏+]

标签:

 

Exception in thread "main" java.lang.IllegalArgumentException: Source must not be null
    at org.springframework.util.Assert.notNull(Assert.java:115)
    at Test.getaVoid(Test.java:11)
    at Test.main(Test.java:6)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:497)
    at com.intellij.rt.execution.application.AppMain.main(AppMain.java:147)

 

 

import org.springframework.util.Assert;

public class Test {

    public static void main(String[] args) {
        getaVoid();
        System.out.println("hello");
    }

    private static void getaVoid() {
        Assert.notNull(null, "Source must not be null");
    }

}

 

Spring Assert.notNull

标签:

原文地址:http://www.cnblogs.com/softidea/p/5872666.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!