package lx17;public class Super {
    public Super()
    {
    
    }
    public Super(String s)
    {
     super(s);
    }
    public void disp(int i) throws Super
    {
     if(i<0)
     {
     throw new Super();
     }
    }
public static void main(String[] args) {
 Super s=new Super();
 s.disp(-1);
}}
怎么抛不出去啊