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