我有这个:

class undefinedException extends Exception {
     super("Its not defined!");
}


但我得到:
非法开始类型

怎么了?

谢谢

最佳答案

它应该是

class UndefinedException extends Exception {

       public UndefinedException() {
          super("Its not defined!");
       }

}

08-17 09:23