init
Some checks failed
Android Test / validate-and-test (pull_request) Has been cancelled

This commit is contained in:
2025-11-30 19:49:37 +07:00
parent a6954c2013
commit bbe7d1ea6c
17 changed files with 322 additions and 24 deletions

View File

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