public Student Add(Student student) { try { FileManager.AddStudent(student); } catch (CustomException e) { Log.Error(e.Message); Log.Error(e.StackTrace); throw; } return(student); }