# Overriding exception.hbs from site customization

**URL:** https://meta.discourse.org/t/overriding-exception-hbs-from-site-customization/42212
**Category:** Support
**Created:** [08.Апрель.2016 01:50:10 UTC](https://meta.discourse.org/t/overriding-exception-hbs-from-site-customization/42212 "2016-04-08T01:50:10Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![Nuck](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/nuck/32/121732_2.png) [@Nuck](https://meta.discourse.org/u/Nuck)
#### Post date: [08.Апрель.2016 01:50:10 UTC](https://meta.discourse.org/t/overriding-exception-hbs-from-site-customization/42212/1 "2016-04-08T01:50:10Z")

</div>

I’m trying to override `exception.hbs` from a site customization, like so:

```handlebars
<script type='text/x-handlebars' data-template-name='exception'>
    <div class="container">
      <div class="error-page">
        <div class="reason">Oops, looks like we flew into a wall!</div>
        <div class="url">
          {{i18n 'errors.prev_page'}} <a {{bind-attr href=requestUrl}} data-auto-route="true">{{requestUrl}}</a>
        </div>
        <div class="desc">
          {{#if networkFixed}}
            <i class="fa fa-check-circle"></i>
          {{/if}}
    
          {{desc}}
        </div>
        <div class="buttons">
          {{#each buttonData in enabledButtons}}
            {{d-button icon=buttonData.icon action=buttonData.action label=buttonData.key class=buttonData.classes}}
          {{/each}}
          {{conditional-loading-spinner condition=loading}}
        </div>
      </div>
    </div>
</script>

```

(in reality there’s more customization I have planned, but this is just where I am right now)

Anyways, for some reason none of the local handlebars variables are accessible so the “Try Again” button etc. don’t work. Is it possible to get at 'em? It seems weird that they wouldn’t be there, so maybe this is a bug? I tested by rendering `{{reason}}`

**Edit** : never mind, the default fails too when I use `/exception` to test, but works on other pages. Feel free to lock this, I’m just an idiot

---

<div class="post-metadata">

### Author: ![eviltrout](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/eviltrout/32/5275_2.png) [@eviltrout](https://meta.discourse.org/u/eviltrout)
#### Post date: [08.Апрель.2016 16:04:39 UTC](https://meta.discourse.org/t/overriding-exception-hbs-from-site-customization/42212/2 "2016-04-08T16:04:39Z")

</div>


