public InvalidFileRecordException(FileSystemNTFS fileSystem, ulong errorOffset, string expected, string found)
     : base(fileSystem, errorOffset, string.Format("Error parsing file record at {0}. Expected {1}, found {2}", errorOffset, expected, found))
 {
 }
 public InvalidFileRecordException(FileSystemNTFS fileSystem, ulong errorOffset, string error)
     : base(fileSystem, errorOffset, string.Format("Error parsing file record at {0}. {1}", errorOffset, error))
 {
 }
Beispiel #3
0
 public NTFSException(FileSystemNTFS fileSystem, ulong errorOffset, string errorMessage)
     : base(errorMessage)
 {
     _fileSystem  = fileSystem;
     _errorOffset = errorOffset;
 }