public EmployeeNotFoundException(string msg) : base(msg)
 {
     AppLogger.logError(msg);
 }
 public EmployeeNotFoundException() : base("Unidentified Exception was raised while finding the Employee")
 {
     AppLogger.logError("Unidentified Exception was raised while finding the Employee");
 }