forked from handsontable/hyperformula
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherror-message.ts
79 lines (78 loc) · 4.36 KB
/
error-message.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/**
* @license
* Copyright (c) 2024 Handsoncode. All rights reserved.
*/
/**
* This is a class for detailed error messages across HyperFormula.
*/
export class ErrorMessage {
public static DistinctSigns = 'Distinct signs.'
public static WrongArgNumber = 'Wrong number of arguments.'
public static EmptyArg = 'Empty function argument.'
public static EmptyArray = 'Empty array not allowed.'
public static ArrayDimensions = 'Array dimensions are not compatible.'
public static NoSpaceForArrayResult = 'No space for array result.'
public static ValueSmall = 'Value too small.'
public static ValueLarge = 'Value too large.'
public static BadCriterion = 'Incorrect criterion.'
public static RangeManySheets = 'Range spans more than one sheet.'
public static CellRangeExpected = 'Cell range expected.'
public static WrongDimension = 'Wrong range dimension.'
public static ScalarExpected = 'Cell range not allowed.'
public static NumberCoercion = 'Value cannot be coerced to number.'
public static NumberExpected = 'Number argument expected.'
public static IntegerExpected = 'Value needs to be an integer.'
public static BadMode = 'Mode not recognized.'
public static DateBounds = 'Date outside of bounds.'
public static OutOfSheet = 'Resulting reference is out of the sheet.'
public static WrongType = 'Wrong type of argument.'
public static NaN = 'NaN or infinite value encountered.'
public static EqualLength = 'Ranges need to be of equal length.'
public static Negative = 'Value cannot be negative.'
public static NotBinary = 'String does not represent a binary number.'
public static NotOctal = 'String does not represent an octal number.'
public static NotHex = 'String does not represent a hexadecimal number.'
public static EndStartPeriod = 'End period needs to be at least start period.'
public static CellRefExpected = 'Cell reference expected.'
public static EmptyRange = 'Empty range not allowed.'
public static BadRef = 'Address is not correct.'
public static NumberRange = 'Number-only range expected.'
public static ValueNotFound = 'Value not found.'
public static ValueBaseLarge = 'Value in base too large.'
public static ValueBaseSmall = 'Value in base too small.'
public static ValueBaseLong = 'Value in base too long.'
public static NegativeLength = 'Length cannot be negative.'
public static PatternNotFound = 'Pattern not found.'
public static OneValue = 'Needs at least one value.'
public static TwoValues = 'Range needs to contain at least two elements.'
public static ThreeValues = 'Range needs to contain at least three elements.'
public static IndexBounds = 'Index out of bounds.'
public static IndexLarge = 'Index too large.'
public static Formula = 'Expected formula.'
public static NegativeCount = 'Count cannot be negative.'
public static ParseError = 'Parsing error.'
public static SheetRef = 'Sheet does not exist.'
public static PeriodLong = 'Period number cannot exceed life length.'
public static InvalidDate = 'Invalid date.'
public static BitshiftLong = 'Result of bitshift is too long.'
public static EmptyString = 'Empty-string argument not allowed.'
public static LengthBounds = 'Length out of bounds.'
public static NegativeTime = 'Time cannot be negative.'
public static NoDefault = 'No default option.'
public static NoConditionMet = 'None of the conditions were met.'
public static Selector = 'Selector cannot exceed the number of arguments.'
public static StartEndDate = 'Start date needs to be earlier than end date.'
public static IncorrectDateTime = 'String does not represent correct DateTime.'
public static CharacterCodeBounds = 'Character code out of bounds.'
public static NonZero = 'Argument cannot be 0.'
public static LessThanOne = 'Argument cannot be less than 1.'
public static WeekendString = 'Incorrect weekend bitmask string.'
public static InvalidRoman = 'Invalid roman numeral.'
public static WrongOrder = 'Wrong order of values.'
public static ComplexNumberExpected = 'Complex number expected.'
public static ShouldBeIorJ = 'Should be \'i\' or \'j\'.'
public static SizeMismatch = 'Array dimensions mismatched.'
public static FunctionName = (arg: string) => `Function name ${arg} not recognized.`
public static NamedExpressionName = (arg: string) => `Named expression ${arg} not recognized.`
public static LicenseKey = (arg: string) => `License key is ${arg}.`
}