1.MalformedURIException,IOException没有导入
2.getEnergy方法后面的Exception写成了Exceeption
3.ExceptionEffectOnInheritance继承自Light类
他的light()方法覆盖了Light类的light()方法,
但是Light类的light()方法只抛出了MalformedURIException
所以ExceptionEffectOnInheritance类的light()方法只能抛出
MalformedURIException或其子类,但是这里抛出了IOException
4.注释取消后提示的错误是因为把IOException写成了IOEception
5.MalformedURIException类的getEnergy方法应该返回int |