> For the complete documentation index, see [llms.txt](https://support.backpack.exchange/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://support.backpack.exchange/support-docs/vn/vi-wallet/tai-lieu-ky-thuat/deeplinks/gioi-han.md).

# Giới Hạn

Khi gửi yêu cầu đến Backpack trong các bước Thiết lập Kết nối, Gửi Giao Dịch, hoặc Ký Thông Điệp, Backpack có thể phản hồi với một lỗi.

## Errors

Dưới đây là danh sách tất cả các mã lỗi có thể xảy ra và ý nghĩa của chúng. Các thông báo lỗi này được tham khảo từ  [EIP-1474](https://eips.ethereum.org/EIPS/eip-1474#error-codes) và [EIP-1193](https://eips.ethereum.org/EIPS/eip-1193#provider-errors) của Ethereum.

| Code   | Title                            | Description                                                                                                                                                                                                                                                                                      |
| ------ | -------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| 4900   | Disconnected                     | Backpack không thể kết nối tới mạng.                                                                                                                                                                                                                                                             |
| 4100   | Unauthorized                     | Phương thức và/hoặc tài khoản được yêu cầu chưa được người dùng cấp quyền.                                                                                                                                                                                                                       |
| 4001   | User Rejected Request            | Người dùng đã từ chối yêu cầu thông qua Backpack.                                                                                                                                                                                                                                                |
| -32000 | Invalid Input                    | Thiếu hoặc tham số không hợp lệ.                                                                                                                                                                                                                                                                 |
| -32002 | Requested resource not available | <p>Lỗi này xảy ra khi ứng dụng cố gửi một giao dịch mới trong khi cửa sổ phê duyệt của Backpack đang mở cho một giao dịch trước đó.<br>Chỉ có thể mở một cửa sổ phê duyệt tại cùng một thời điểm. Người dùng cần phê duyệt hoặc từ chối giao dịch hiện tại trước khi khởi tạo giao dịch mới.</p> |
| -32003 | Transaction Rejected             | Backpack không nhận diện được một giao dịch hợp lệ.                                                                                                                                                                                                                                              |
| -32601 | Method Not Found                 | Backpack không nhận diện được phương thức yêu cầu.                                                                                                                                                                                                                                               |
| -32603 | Internal Error                   | Đã có sự cố xảy ra bên trong Backpack.                                                                                                                                                                                                                                                           |

Thông thường, các lỗi này sẽ dễ dàng phân tích và bao gồm cả mã lỗi và giải thích. Ví dụ:

```
try {
  await window.solana.signMessage();
} catch (err) {
  //  {code: 4100, message: 'The requested method and/or account has not been authorized by the user.'}
}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://support.backpack.exchange/support-docs/vn/vi-wallet/tai-lieu-ky-thuat/deeplinks/gioi-han.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
