1 |
william |
92 |
using System; |
2 |
|
|
using System.Collections.Generic; |
3 |
|
|
using System.Linq; |
4 |
|
|
using System.Text; |
5 |
|
|
|
6 |
|
|
namespace libxmltv.Core |
7 |
|
|
{ |
8 |
|
|
internal enum ExceptionResource |
9 |
|
|
{ |
10 |
|
|
Argument_ImplementIComparable, |
11 |
|
|
Argument_InvalidType, |
12 |
|
|
Argument_InvalidArgumentForComparison, |
13 |
|
|
Argument_InvalidRegistryKeyPermissionCheck, |
14 |
|
|
ArgumentOutOfRange_NeedNonNegNum, |
15 |
|
|
Arg_ArrayPlusOffTooSmall, |
16 |
|
|
Arg_NonZeroLowerBound, |
17 |
|
|
Arg_RankMultiDimNotSupported, |
18 |
|
|
Arg_RegKeyDelHive, |
19 |
|
|
Arg_RegKeyStrLenBug, |
20 |
|
|
Arg_RegSetStrArrNull, |
21 |
|
|
Arg_RegSetMismatchedKind, |
22 |
|
|
Arg_RegSubKeyAbsent, |
23 |
|
|
Arg_RegSubKeyValueAbsent, |
24 |
|
|
Argument_AddingDuplicate, |
25 |
|
|
Serialization_InvalidOnDeser, |
26 |
|
|
Serialization_MissingKeyValuePairs, |
27 |
|
|
Serialization_NullKey, |
28 |
|
|
Argument_InvalidArrayType, |
29 |
|
|
NotSupported_KeyCollectionSet, |
30 |
|
|
NotSupported_ValueCollectionSet, |
31 |
|
|
ArgumentOutOfRange_SmallCapacity, |
32 |
|
|
ArgumentOutOfRange_Index, |
33 |
|
|
Argument_InvalidOffLen, |
34 |
|
|
Argument_ItemNotExist, |
35 |
|
|
ArgumentOutOfRange_Count, |
36 |
|
|
ArgumentOutOfRange_InvalidThreshold, |
37 |
|
|
ArgumentOutOfRange_ListInsert, |
38 |
|
|
NotSupported_ReadOnlyCollection, |
39 |
|
|
InvalidOperation_CannotRemoveFromStackOrQueue, |
40 |
|
|
InvalidOperation_EmptyQueue, |
41 |
|
|
InvalidOperation_EnumOpCantHappen, |
42 |
|
|
InvalidOperation_EnumFailedVersion, |
43 |
|
|
InvalidOperation_EmptyStack, |
44 |
|
|
ArgumentOutOfRange_BiggerThanCollection, |
45 |
|
|
InvalidOperation_EnumNotStarted, |
46 |
|
|
InvalidOperation_EnumEnded, |
47 |
|
|
NotSupported_SortedListNestedWrite, |
48 |
|
|
InvalidOperation_NoValue, |
49 |
|
|
InvalidOperation_RegRemoveSubKey, |
50 |
|
|
Security_RegistryPermission, |
51 |
|
|
UnauthorizedAccess_RegistryNoWrite, |
52 |
|
|
ObjectDisposed_RegKeyClosed, |
53 |
|
|
NotSupported_InComparableType |
54 |
|
|
} |
55 |
|
|
} |