forked from ExcelDataReader/ExcelDataReader
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathErrors.cs
More file actions
21 lines (20 loc) · 1.44 KB
/
Copy pathErrors.cs
File metadata and controls
21 lines (20 loc) · 1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
namespace ExcelDataReader
{
internal static class Errors
{
public const string ErrorStreamWorkbookNotFound = "Neither stream 'Workbook' nor 'Book' was found in file.";
public const string ErrorWorkbookIsNotStream = "Workbook directory entry is not a Stream.";
public const string ErrorWorkbookGlobalsInvalidData = "Error reading Workbook Globals - Stream has invalid data.";
public const string ErrorFatBadSector = "Error reading as FAT table : There's no such sector in FAT.";
public const string ErrorFatRead = "Error reading stream from FAT area.";
public const string ErrorHeaderSignature = "Invalid file signature.";
public const string ErrorHeaderOrder = "Invalid byte order specified in header.";
public const string ErrorBiffRecordSize = "Buffer size is less than minimum BIFF record size.";
public const string ErrorBiffIlegalBefore = "BIFF Stream error: Moving before stream start.";
public const string ErrorBiffIlegalAfter = "BIFF Stream error: Moving after stream end.";
public const string ErrorDirectoryEntryArray = "Directory Entry error: Array is too small.";
public const string ErrorCompoundNoOpenXml = "Detected compound document, but not a valid OpenXml file.";
public const string ErrorZipNoOpenXml = "Detected ZIP file, but but not a valid OpenXml file.";
public const string ErrorInvalidPassword = "Invalid password.";
}
}