在Java中,要自定義異常,你需要創建一個新的類,該類繼承自java.lang.Exception
或其子類(通常是RuntimeException
)。然后,你可以在這個類中添加一些自定義方法和屬性。以下是一個簡單的示例:
CustomException
的新類,繼承自Exception
類:public class CustomException extends Exception {
}
public class CustomException extends Exception {
private String errorMessage;
public CustomException(String errorMessage) {
super(errorMessage);
this.errorMessage = errorMessage;
}
public String getErrorMessage() {
return errorMessage;
}
}
CustomException
:public class MyClass {
public void myMethod() throws CustomException {
if (someCondition) {
throw new CustomException("This is a custom exception.");
}
}
}
myMethod
方法的地方,使用try-catch
塊捕獲并處理CustomException
:public class Main {
public static void main(String[] args) {
MyClass myClass = new MyClass();
try {
myClass.myMethod();
} catch (CustomException e) {
System.out.println("Caught custom exception: " + e.getErrorMessage());
}
}
}
這樣,你就成功地創建了一個自定義異常類,并在代碼中使用它了。