查看这个IllegalArgumentException类的代码看看

解决方案 »

  1.   

    IllegalArgumentException是java的异常.并没有看出什么,只是不知道这个异常在哪儿被捕获了.IllegalArgumentException的代码:package java.lang;/**
     * Thrown to indicate that a method has been passed an illegal or 
     * inappropriate argument.
     *
     * @author  unascribed
     * @version 1.18, 12/03/01
     * @see     java.lang.Thread#setPriority(int)
     * @since   JDK1.0
     */
    public
    class IllegalArgumentException extends RuntimeException {
        /**
         * Constructs an <code>IllegalArgumentException</code> with no 
         * detail message. 
         */
        public IllegalArgumentException() {
    super();
        }    /**
         * Constructs an <code>IllegalArgumentException</code> with the 
         * specified detail message. 
         *
         * @param   s   the detail message.
         */
        public IllegalArgumentException(String s) {
    super(s);
        }
    }