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 record exceeds the maximum 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 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 copying or pasting data, check the status of the last copy or paste operation. 612. Perform subsequent operations only after the previous copy/paste operation is completed. 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 target data cannot be copied, such as read-only data. 76 77**Solution** 78 79Make sure the target data allows the copy action.