Commit changes

This commit is contained in:
LavashGms
2025-12-11 19:51:11 +07:00
parent 83b3202ea2
commit fb2acb3b70
17 changed files with 361 additions and 28 deletions

View File

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