public void onClick() throws SQLException
try {
// Do something
} catch(MySQLIntegrityConstraintViolationException e) {
//Can i convert this exception to SQL Exception
}
我可以將MySQLIntegrityConstraintViolationException轉換爲該方法拋出的SQLException嗎?在catch塊內拋出異常
你絕對正確(「不要只是傳遞信息......」),但看到我更新的答案。 –