Example #1
0
 protected FileException(string filePath, SSP.FileIOPermissionAccess type)
 {
     FilePath = filePath;
     Type     = type;
 }
Example #2
0
 protected FileException(string filePath, SSP.FileIOPermissionAccess type, string message, S.Exception innerException) : base(message, innerException)
 {
     FilePath = filePath;
     Type     = type;
 }
Example #3
0
 public OperationIOException(string filePath, SSP.FileIOPermissionAccess type, string message, S.Exception innerException) : base(filePath, type, message, innerException)
 {
 }