Is there an exception that I can use for when there are one or more files not found?
I'm doing this: filePaths.Where(file => !file.Exists);
and I need to throw some kind of FilesNotFound exception. Do I need to inherit from Exception and make my own exception class?
I'm using C# .NET 4.