package com.example.nto.excepation; public class EmployeeNotFoundException extends RuntimeException{ public EmployeeNotFoundException(String msg) { super(msg); } }