Unreported exception java.sql.SQLException; must be caught or declared to be thrown?

前端 未结 4 1724
孤街浪徒
孤街浪徒 2020-11-30 13:46

I got this error while trying to compile the below code. I would like to know what is I have done wrong.

unreported exception java.sql.SQLException; must be caugh         


        
4条回答
  •  情深已故
    2020-11-30 14:36

    You either need to catch the exception in your method:

    public void setupInfo()
    {
        try
        {
            // call methods that might throw SQLException
        }
        catch (SQLException e)
        {
            // do something appropriate with the exception, *at least*:
            e.printStackTrace();
        }
    }
    

    Or declare the method to throw SQLException:

    private void setupInfo() throws SQLException
    {
        // call methods that might throw SQLException
    }
    

提交回复
热议问题