您好,登錄后才能下訂單哦!
這篇文章主要介紹java如何拋出適合抽象的異常,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
拋出的異常應該與調用者執行的任務有聯系。此項介紹異常轉換(捕獲異常并拋出另一個)和異常鏈(將異常包裝在新的異常中以保留異常的因果鏈)。
private void serializeBillingDetails(BillingResult billingResult, BillingDetailsType billingDetails) { try { final JAXBContext context = JAXBContext .newInstance(BillingdataType.class); final ByteArrayOutputStream out = new ByteArrayOutputStream(); final Marshaller marshaller = context.createMarshaller(); marshaller.setProperty("jaxb.formatted.output", Boolean.FALSE); final BillingdataType billingdataType = new BillingdataType(); billingdataType.getBillingDetails().add(billingDetails); marshaller.marshal(factory.createBillingdata(billingdataType), out); final String xml = new String(out.toByteArray(), "UTF-8"); billingResult.setResultXML(xml.substring( xml.indexOf("<Billingdata>") + 13, xml.indexOf("</Billingdata>")).trim()); billingResult.setGrossAmount(billingDetails.getOverallCosts() .getGrossAmount()); billingResult.setNetAmount(billingDetails.getOverallCosts() .getNetAmount()); } catch (JAXBException | UnsupportedEncodingException ex) { throw new BillingRunFailed(ex); } }
上述方法捕獲 JAXBException
和 UnsupportedEncodingException
,并重新拋出一個適合方法抽象級別的新異常。新的 BillingRunFailed
異常包裝了原始異常。所以這是異常鏈的一個很好的例子。異常鏈的好處是保留有助于調試問題的低級異常。
以上是“java如何拋出適合抽象的異常”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。