• 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
46Similar to the error code [27787277](#27787277-another-copy-or-paste-operation-in-progress).
47
48**Error Message**
49
50Another copy or paste operation is in progress.
51
52**Description**
53
54This error code is reported when a new copy or paste attempt is made before the previous one is completed.
55
56**Possible Causes**
57
58The 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.
59
60**Solution**
61
621. Before you copy or paste data, check the status of the last copy or paste operation.
632. Wait until the last copy or paste operation has finished, and then copy or paste data again.
64
65## 12900004 Copy Prohibited
66
67Similar to the error code [27787278](#27787278-copy-prohibited).
68
69**Error Message**
70
71Replication is prohibited.
72
73**Description**
74
75This error code is reported when an attempt is made to copy data that cannot be copied.
76
77**Possible Causes**
78
79The data is read-only and cannot be copied.
80
81**Solution**
82
831. Make sure the target data allows the copy action.
842. Make sure you only copy data that allows for copy.
85
86## 12900005 Request Timeout
87
88**Error Message**
89
90Request timed out.
91
92**Description**
93
94This error code is reported when the time spent in internal data processing exceeds the timeout.
95
96**Possible Causes**
97
98The data to be processed is large and consumes too much time.
99
100**Solution**
101
102If the data to be processed is too large, consider using an asynchronous API.
103
104## 12900006 Settings Already Exists
105
106**Error Message**
107
108Settings already exist.
109
110**Description**
111
112This error code is reported when the global pasteable range of the application to be set already exists.
113
114**Possible Causes**
115
116The global pasteable scope of the application already exists.
117
118**Solution**
119
120Delete the existing settings and then set the new one.
121
122## 12900007 File Copying Failure
123
124**Error Message**
125
126Copy file failed.
127
128**Description**
129
130This error code is reported when a file fails to be copied.
131
132**Possible Causes**
133
134The file fails to be downloaded and copied.
135
136**Solution**
137
1381. Before copying related data, check whether the destination path is valid.
1392. If the destination path is invalid, confirm the correct path.
140
141## 12900008 Progress Startup Failure
142
143**Error Message**
144
145Failed to start progress.
146
147**Description**
148
149This error code is reported when the progress fails to be created using the default progress indicator.
150
151**Possible Causes**
152
153The system thread is abnormal.
154
155**Solution**
156
157Check whether the pasting is successful. If yes, ignore this error; otherwise, contact technical support.
158
159## 12900009 Progress Reporting Exception
160
161**Error Message**
162
163Progress exits abnormally.
164
165**Description**
166
167 This error code is reported when the progress reporting on default progress indicator is abnormal.
168
169**Possible Causes**
170
171The progress is displayed abnormally.
172
173**Solution**
174
175Check whether the pasting is successful. If yes, ignore this error; otherwise, contact technical support.
176
177## 12900010 Data Obtaining Failure
178
179**Error Message**
180
181Get Data failed.
182
183**Description**
184
185This error code is reported when the copied data fails to be obtained.
186
187**Possible Causes**
188
189The copied data fails to be obtained.
190
191**Solution**
192
193Contact technical support.
194
195## 27787277 Another Copy or Paste Operation in Progress
196
197Similar to the error code [12900003](#12900003-another-copy-or-paste-operation-in-progress).
198
199**Error Message**
200
201Another copy or paste operation is in progress.
202
203**Description**
204
205This error code is reported when a new copy or paste attempt is made before the previous one is completed.
206
207**Possible Causes**
208
209The 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.
210
211**Solution**
212
2131. Before you copy or paste data, check the status of the last copy or paste operation.
2142. Wait until the last copy or paste operation has finished, and then copy or paste data again.
215
216## 27787278 Copy Prohibited
217
218Similar to the error code [12900004](#12900004-copy-prohibited).
219
220**Error Message**
221
222Replication is prohibited.
223
224**Description**
225
226This error code is reported when an attempt is made to copy data that cannot be copied.
227
228**Possible Causes**
229
230The data is read-only and cannot be copied.
231
232**Solution**
233
2341. Make sure the target data allows the copy action.
2352. Make sure you only copy data that allows for copy.
236