标签: java android error-handling try-catch
例如此代码段
Log.i(LOG_TAG, "Creating Table: " + createTableStatement); try { db.execSQL(createTableStatement); } catch (SQLException e) { //from 'import android.database.SQLException;' //do something }
我应该做什么?"做某事"一部分?