Announcements
Autodesk Community will be read-only between April 26 and April 27 as we complete essential maintenance. We will remove this banner once completed. Thanks for your understanding

Can some one describe what exactly is a Unhandled Exception is for Fusion 360.

Anonymous

Can some one describe what exactly is a Unhandled Exception is for Fusion 360.

Anonymous
Not applicable

So I can make out that the app will close. Unexpectedly. I just get some of this error from the temp area. Nothing for this app is unusual to work. All it does is just quit when there are ongoing processes. Usually when I change the perspective of the view on the model. Or it might appear as an issue when I try to make different selections. This only happens when I try to make new solids only. As that is a problem. 

I don't even care to attach the log files collected by Autodesk.

I put this exception for no reason. This usually makes no difference to putting together a solution.

Right now the only solution speed I can gain is getting stuck on the character assembly. For inputs of i, ї, 

Í í i̇́ Ì ì i̇̀ Ĭ ĭ Î î Ǐ ǐ Ïï Ḯḯ Ĩĩ i̇̃ Į į Į́ į̇́ Į̃ į̇̃ Ī ī Ī̀ ī̀ Ỉ ỉ Ȉ ȉ I̋ i̋ Ȋ ȋ Ị ị Ꞽ ꞽ Ḭ ḭ Ɨ ɨ

<Exception PGStatus="0x00000001" access_address="0x00000000000000d8" accessing_null_ptr="1" code="0xc0000005" exception_address="0x00007FFDFC27E125" text="ACCESS_VIOLATION" type="Read"/>

 

Also, 

error report CER_227737580 to Autodesk

0 Likes
Reply
457 Views
1 Reply
Reply (1)

lcemoore
Participant
Participant

When a running program attempts to perform an operation and it cannot be accomplished, an error is generated.  This occurs infrequently in most applications, but we don't know about them because the programmers anticipate the majority of these errors and provide code to isolate the error and prevent it from effecting normal operation of the program. This special code is called an exception handler.

 

When an error occurs that the programmer does not, or cannot anticipate, an error handler will not be provided, In these cases the operating system will generate an unhandled exception, which generally results in termination of the offending software and a notification message, like what you received. I used the term offending, because these errors can effect operation of your operations system and the OS must take action to prevent that.

 

These kind of errors usually only occur when a conflict arises between the software and some piece of  hardware  and is the reason why we often see lists of compatible hardware when we look at a software's requirements.

Frequently it is a problem with one of the following:

 

Damaged system memory- It only takes one bad memory node to cause these errors

Damaged storage (hard drive)

Incompatible device drivers

Software updates can sometimes be the cause in some computer configures far outside the expected norm.

 

At any rate, if you can make this happen repeating when doing the same operation, that is information the programmers need to resolve the problem.  But if the problem is in your hardware, they will unlikely be able to isolate it for you.

 

 

0 Likes