public class NoLowerLetter extends Exception {
public NoLowerLetter () {
super();
}
}
public class NoDigit extends Exception {
public NoDigit () {
super();
}
}
public class People{
void printLetter(char c){
throw new NoLowerLetter("抛出NoLowerLetter异常");
}
void PrintDigit(char c){
throw new NoDigit("抛出NoDigit异常");
}
}