AutomationDrivers.Core.Configuration.ProjectPath.ProjectPath C# (CSharp) Method

ProjectPath() private method

private ProjectPath ( string fullPath ) : System
fullPath string
return System
        private ProjectPath(string fullPath)
        {
            var folder = new DirectoryInfo(fullPath);
            if (!folder.Exists)
            {
                throw new DirectoryNotFoundException();
            }
            FullPath = fullPath;
        }