Re: All of a sudden, app security exception?
Re: All of a sudden, app security exception?
- Subject: Re: All of a sudden, app security exception?
- From: Kyle Sluder <email@hidden>
- Date: Fri, 27 Mar 2015 16:05:33 -0600
On Fri, Mar 27, 2015, at 03:43 PM, Rick Mann wrote:
> So, I'm working along on a little OS X app, and everything is fine. I
> modify a tiny bit of code (rearranging some if statements in a method,
> and suddenly I'm getting an exception. I didn't set or change anything
> related to code signing. I did, just after hitting "run", go over to
> Safari and check out some WebGL example someone sent me.
>
> What happened?
>
> #0 0x00007fff845fdab7 in __cxa_throw ()
You're broken on a C++ exception throw. Unlike Objective-C code, where
exceptions are only used for programmer errors, some C++ frameworks use
exceptions for flow control. A higher stack frame might catch this
exception as a normal part of execution.
Change your Exception breakpoint type from "All" to "Objective-C" to
avoid breaking into the debugger when these exceptions are thrown.
--Kyle Sluder
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden