using System; using System.IO; namespace NaGet.Packages { /// /// パッケージ情報のファイルアクセスに関する例外 /// public class PackageInformationFileAccessException : ApplicationException { string filePath; public PackageInformationFileAccessException(string msg, string filepath, Exception innerException) : base(msg, innerException) { this.filePath = filepath; } /// /// パッケージ情報のファイルへのパス /// public string FilePath { get { return filePath; } } } }