OSDN Git Service

Win8.1は暫定的にWin8と同じ扱いとする
[applistation/AppliStation.git] / na-get-lib / NaGet.Packages / PackageInformationFileAccessException.cs
1 using System;
2 using System.IO;
3
4 namespace NaGet.Packages
5 {
6         /// <summary>
7         /// パッケージ情報のファイルアクセスに関する例外
8         /// </summary>
9         public class PackageInformationFileAccessException : ApplicationException
10         {
11                 string filePath;
12                 
13                 public PackageInformationFileAccessException(string msg, string filepath, Exception innerException)
14                         : base(msg, innerException)
15                 {
16                         this.filePath = filepath;
17                 }
18                 
19                 /// <summary>
20                 /// パッケージ情報のファイルへのパス
21                 /// </summary>
22                 public string FilePath {
23                         get { return filePath; }
24                 }
25         }
26 }