ADD file via upload

main
pc9pizjb6 4 months ago
parent 1097755340
commit f5ed4ef2fd

@ -0,0 +1,23 @@
package com.studentmanagement.exception;
/**
*
*/
public class StudentNotFoundException extends Exception {
/**
*
* @param message
*/
public StudentNotFoundException(String message) {
super(message);
}
/**
* ID
* @param id ID
*/
public StudentNotFoundException(int id) {
super("学生ID " + id + " 未找到");
}
}
Loading…
Cancel
Save