# IOErrorEvent refusing to catch

**URL:** https://forum.kirupa.com/t/ioerrorevent-refusing-to-catch/306686
**Category:** Uncategorized
**Created:** [March 19, 2010, 10:23pm UTC](https://forum.kirupa.com/t/ioerrorevent-refusing-to-catch/306686 "2010-03-19T22:23:34Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![Anogar](https://avatars.discourse-cdn.com/v4/letter/a/ed655f/32.png) [@Anogar](https://forum.kirupa.com/u/Anogar)
#### Post date: [March 19, 2010, 10:23pm UTC](https://forum.kirupa.com/t/ioerrorevent-refusing-to-catch/306686/1 "2010-03-19T22:23:34Z")

</div>

This just isn’t firing, I’m still getting your standard Error #2044: Unhandled IOErrorEvent:. text=Error #2035: URL Not Found.

```auto
loader.contentLoaderInfo.addEventListener(Event.COMPLETE, loadCompleted);
loader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, loadError);
loader.load(new URLRequest(url));

private function loadError(event:IOErrorEvent):void
{
	trace("Load error: " + event);
}

```

… the COMPLETE event is catching just fine. I’ve done this a million times and this time it just isn’t working, I feel crazy. :stare:
