BudgetAnalyser.Engine.Statement.BankImportUtilities.AbortIfFileDoesntExist C# (CSharp) 메소드

AbortIfFileDoesntExist() 개인적인 메소드

private AbortIfFileDoesntExist ( string fileName ) : void
fileName string
리턴 void
        internal virtual void AbortIfFileDoesntExist(string fileName)
        {
            if (!File.Exists(fileName))
            {
                throw new FileNotFoundException("File not found.", fileName);
            }
        }