forked from DynamoDS/Dynamo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUnhandledExceptionInDynamoEngine.html
More file actions
48 lines (36 loc) · 2.16 KB
/
UnhandledExceptionInDynamoEngine.html
File metadata and controls
48 lines (36 loc) · 2.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!--
There are two versions of this HTML file. One that is part of the Dynamo Dictionary
codebase and one that is part of the Dynamo codebase, used for displaying additional
error information in the Dynamo side panel.
These files need to kept in sync manually: if making edits to one version of the file,
make sure to update the other version as well.
Dynamo: https://github.com/DynamoDS/Dynamo
Dynamo Dictionary: https://github.com/DynamoDS/DynamoDictionary_React
-->
<head>
<meta charset="UTF-8" />
</head>
<style>
body {
color: white;
font-size: 14px;
font-family: "Artifakt Element";
src: url("fonts/ArtifaktElement-Regular.woff") format("woff");
padding: 1%;
}
a {
color: lightgray;
cursor: pointer;
background-color: transparent;
}
</style>
<!-- Use inline styles to keep Dynamo Dictionary styling in the dictionary -->
<!-- and custom styling in Dynamo sidepanel. -->
<body style="background-color: #353535; font-family: 'Artifakt Element', 'Open Sans';">
<h2>Unhandled exception in Dynamo engine</h2>
<p>This error message typically means that there is a bug in Dynamo code which is causing Dynamo to crash. This is not necessarily related to your graph (or one of the packages you are using) and <a href="https://github.com/DynamoDS/Dynamo/blob/master/CONTRIBUTING.md#filing-issues"><span>submitting a bug report</span></a> can help Dynamo developers fix these issues in a later release. </p>
<h4>How to fix</h4>
<p>Saving your work, restarting Dynamo and re-loading your file can help you recover from these errors. In addition, you can try updating Dynamo and the Dynamo packages you are using on your computer to their latest versions, which might already include fixes for the issues you are facing. If you can identify which package is causing issues, you can also contact the package author directly for more information. </p>
<h4>More information</h4>
<p>To find out more, please check <a href="https://forum.dynamobim.com/search?q=unhandled%20exception%20in%20dynamo%20engine"><span> posts on the Dynamobim forum discussing "<strong>unhandled exception in dynamo engine</strong>"</span></a>.</p>
</body>