Add missing ApplicationException dependency

The relation backend formwidget throws an `ApplicationException` when a relation isn't defined, but the exception is missing its `use` statement. This PR adds it in. See error below:

![Screenshot showing error thrown](http://i.imgur.com/4Ka6fL2.png)
This commit is contained in:
Dave Shoreman 2015-04-01 19:13:42 +01:00
parent 31f598237a
commit d18a0a6453
1 changed files with 1 additions and 0 deletions

View File

@ -2,6 +2,7 @@
use Lang;
use Backend\Classes\FormWidgetBase;
use ApplicationException;
use SystemException;
use Illuminate\Database\Eloquent\Relations\Relation as RelationBase;