首頁 > Java > java教程 > 主體

如何在Java中建立自訂的未檢查異常?

WBOY
發布: 2023-09-11 16:37:02
轉載
1210 人瀏覽過

如何在Java中建立自訂的未檢查異常?

我們可以透過擴充 Java 中的 RuntimeException 來建立自訂未檢查異常

未檢查異常繼承自Error類別或RuntimeException類別。許多程式設計師認為我們無法在程式中處理這些異常,因為它們代表了程式執行時無法復原的錯誤類型。引發未經檢查的例外狀況時,通常是因為濫用程式碼傳遞 null或其他不正確的參數所引起的。

語法
public class MyCustomException extends RuntimeException {
   public MyCustomException(String message) {
      super(message);
   }
}
登入後複製

實作未檢查異常

自訂未檢查異常的實作幾乎與 Java 中的已檢查異常類似。唯一的區別是未經檢查的異常必須擴展 RuntimeException 而不是 Exception。

範例

public class CustomUncheckedException extends RuntimeException {
   /*
   * Required when we want to add a custom message when throwing the exception
   * as throw new CustomUncheckedException(" Custom Unchecked Exception ");
   */
   public CustomUncheckedException(String message) {
      // calling super invokes the constructors of all super classes
      // which helps to create the complete stacktrace.
      super(message);
   }
   /*
   * Required when we want to wrap the exception generated inside the catch block and rethrow it
   * as catch(ArrayIndexOutOfBoundsException e) {
      * throw new CustomUncheckedException(e);
   * }
   */
   public CustomUncheckedException(Throwable cause) {
      // call appropriate parent constructor
      super(cause);
   }
   /*
   * Required when we want both the above
   * as catch(ArrayIndexOutOfBoundsException e) {
      * throw new CustomUncheckedException(e, "File not found");
   * }
   */
   public CustomUncheckedException(String message, Throwable throwable) {
      // call appropriate parent constructor
      super(message, throwable);
   }
}
登入後複製
#

以上是如何在Java中建立自訂的未檢查異常?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:tutorialspoint.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!