-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
i18n/en/docusaurus-plugin-content-docs/current/business/ultimate/commonerrors.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Common Errors | ||
|
||
## ExecutionEngineException: Could not run the type initializer for origin DHE type 'xxx' | ||
|
||
The reason is that the original AOT type was accidentally created which was replaced by DHE. After using DHE, you can no longer create primitive types corresponding to types in DHE assemblies. There are several reasons for this error: | ||
|
||
- The code in the DHE assembly was executed before the DHE assembly was loaded. | ||
- The hot update dhe dll does not match the dhao file, causing the original AOT code that should not be executed to be executed incorrectly, creating the original AOT type. Only versions 4.5.7 and earlier that do not strictly verify dll will have this error | ||
- When an exception is thrown or a log is printed, the original function of the DHE assembly is accidentally accessed during the process of obtaining the function frame stack. 4.5.8 and earlier versions have this bug | ||
- Enabled `script debugging` build parameters |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters