• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Pasteboard Error Codes
2
3> **NOTE**
4>
5> This topic describes only module-specific error codes. For details about universal error codes, see [Universal Error Codes](../errorcode-universal.md).
6
7## 12900001 Index Out of Range
8
9**Error Message**
10
11The index is out of range.
12
13**Description**
14
15This error code is reported when the index passed in to the called API, such as **getRecord**, is out of range.
16
17**Possible Causes**
18
19The index passed in the API is beyond the record index range of the **PasteData** object. For example, the index passed in to **getRecord** exceeds the number of records.
20
21**Solution**
22
23Check the index range and call the API again with a valid index.
24
25## 12900002 Maximum Number of Records Reached
26
27**Error Message**
28
29The number of records exceeds the upper limit.
30
31**Description**
32
33This error code is reported when no new **PasteData** record can be added.
34
35**Possible Causes**
36
37The number of **PasteData** records has reached the maximum.
38
39**Solution**
40
411. Check whether the number of **PasteData** records has reached the maximum.
422. If the number of **PasteData** records has reached the maximum, delete some records before adding new ones.
43
44## 12900003 Another Copy or Paste Operation in Progress
45
46**Error Message**
47
48Another copy or paste operation is in progress.
49
50**Description**
51
52This error code is reported when a new copy or paste attempt is made before the previous one is completed.
53
54**Possible Causes**
55
56The copy and paste APIs are both asynchronous APIs. If the data to be copied or pasted is in large amount, the time required may be long. New copy or paste operations can be performed only after the previous operations have been completed.
57
58**Solution**
59
601. Before you copy or paste data, check the status of the last copy or paste operation.
612. Wait until the last copy or paste operation has finished, and then copy or paste data again.
62
63## 12900004 Copy Prohibited
64
65**Error Message**
66
67Replication is prohibited.
68
69**Description**
70
71This error code is reported when an attempt is made to copy data that cannot be copied.
72
73**Possible Causes**
74
75The data is read-only and cannot be copied.
76
77**Solution**
78
791. Make sure the target data allows the copy action.
802. Make sure you only copy data that allows for copy.
81
82## 12900005 Request Timeout
83
84**Error Message**
85
86Request timed out.
87
88**Description**
89
90This error code is reported when the time spent in internal data processing exceeds the timeout.
91
92**Possible Causes**
93
94The data to be processed is large and consumes too much time.
95
96**Solution**
97
98If the data to be processed is too large, consider using an asynchronous API.
99
100## 12900006 Settings Already Exists
101
102**Error Message**
103
104Settings already exist.
105
106**Description**
107
108This error code is reported when the global pasteable range of the application to be set already exists.
109
110**Possible Causes**
111
112The global pasteable scope of the application already exists.
113
114**Solution**
115
116Delete the existing settings and then set the new one.
117
118## 12900007 File Copying Failure
119
120**Error Message**
121
122Copy file failed.
123
124**Description**
125
126This error code is reported when a file fails to be copied.
127
128**Possible Causes**
129
130The file fails to be downloaded and copied.
131
132**Solution**
133
1341. Before copying related data, check whether the destination path is valid.
1352. If the destination path is invalid, confirm the correct path.
136
137## 12900008 Progress Startup Failure
138
139**Error Message**
140
141Failed to start progress.
142
143**Description**
144
145This error code is reported when the progress fails to be created using the default progress indicator.
146
147**Possible Causes**
148
149The system thread is abnormal.
150
151**Solution**
152
153Check whether the pasting is successful. If yes, ignore this error; otherwise, contact technical support.
154
155## 12900009 Progress Reporting Exception
156
157**Error Message**
158
159Progress exits abnormally.
160
161**Description**
162
163 This error code is reported when the progress reporting on default progress indicator is abnormal.
164
165**Possible Causes**
166
167The progress is displayed abnormally.
168
169**Solution**
170
171Check whether the pasting is successful. If yes, ignore this error; otherwise, contact technical support.
172
173## 12900010 Data Obtaining Failure
174
175**Error Message**
176
177Get Data failed.
178
179**Description**
180
181This error code is reported when the copied data fails to be obtained.
182
183**Possible Causes**
184
185The copied data fails to be obtained.
186
187**Solution**
188
189Contact technical support.
190