📅  最后修改于: 2022-03-11 14:52:40.513000             🧑  作者: Mango
// Most exception classes provide a constructor requesting a String.
// Check the API of your superclass.
public class PersonalException extends RuntimeException{
public PersonalException() {
super("This is a message for you! Something went wrong...");
}
}