master
<?php namespace Aol\Atc\Exceptions; use Aol\Atc\Exception; class NotAuthorizedException extends Exception { protected $data = ['status' => 'error', 'message' => 'not authorized']; protected $http_code = 401; protected $view = 'errors/401'; }