rethrownew.java

来自「一个十分好的java基础学习的课件」· Java 代码 · 共 16 行

JAVA
16
字号
//Rethrow a different object from the one that was caught
public class RethrowNew
{   public static void f( ) throws Exception
    {   System.out.println("originating the exception in f( )");
        throw new Exception("throw from f( )");
    }
    public static void main(String[ ] args)
    {   try
        {   f( );}
        catch(Exception e)
        {   System.out.println("Caught in main,e.printStackTrace( )");
            e.printStackTrace( );
            throw new NullPointerException("from main");
        }
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?