-
Notifications
You must be signed in to change notification settings - Fork 164
Expand file tree
/
Copy pathErrorCode.cs
More file actions
85 lines (72 loc) · 2.19 KB
/
ErrorCode.cs
File metadata and controls
85 lines (72 loc) · 2.19 KB
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
80
81
82
83
84
85
namespace NHapi.Base
{
using System.ComponentModel;
public enum ErrorCode
{
/// <summary>
/// Message accepted
/// </summary>
[Description("Message accepted")]
MESSAGE_ACCEPTED = 0,
/// <summary>
/// Segment sequence error
/// </summary>
[Description("Segment sequence error")]
SEGMENT_SEQUENCE_ERROR = 100,
/// <summary>
/// Required field missing
/// </summary>
[Description("Required field missing")]
REQUIRED_FIELD_MISSING = 101,
/// <summary>
/// Date type error
/// </summary>
[Description("Data type error")]
DATA_TYPE_ERROR = 102,
/// <summary>
/// Table value not found
/// </summary>
[Description("Table value not found")]
TABLE_VALUE_NOT_FOUND = 103,
/// <summary>
/// Unsupported message type
/// </summary>
[Description("Unsupported message type")]
UNSUPPORTED_MESSAGE_TYPE = 200,
/// <summary>
/// Unsupported event code
/// </summary>
[Description("Unsupported event code")]
UNSUPPORTED_EVENT_CODE = 201,
/// <summary>
/// Unsupported processing id
/// </summary>
[Description("Unsupported processing id")]
UNSUPPORTED_PROCESSING_ID = 202,
/// <summary>
/// Unsupported version id
/// </summary>
[Description("Unsupported version id")]
UNSUPPORTED_VERSION_ID = 203,
/// <summary>
/// Unknown key id
/// </summary>
[Description("Unknown key identifier")]
UNKNOWN_KEY_IDENTIFIER = 204,
/// <summary>
/// Duplicate key id
/// </summary>
[Description("Duplicate key identifier")]
DUPLICATE_KEY_IDENTIFIER = 205,
/// <summary>
/// Application record locked
/// </summary>
[Description("Application record locked")]
APPLICATION_RECORD_LOCKED = 206,
/// <summary>
/// Application error
/// </summary>
[Description("Application internal error")]
APPLICATION_INTERNAL_ERROR = 207,
}
}