This commit is contained in:
Bhumi Shah
2025-12-05 20:31:13 +03:00
parent a6954c2013
commit af09df8047
18 changed files with 458 additions and 33 deletions

View File

@@ -0,0 +1,7 @@
package com.example.nto.excepation;
public class EmployeeNotFoundException extends RuntimeException{
public EmployeeNotFoundException(String msg) {
super(msg);
}
}