no need to report last dashboard exception #yjypx2

This commit is contained in:
Denis Duliçi
2021-08-26 01:55:30 +03:00
parent e9e0012175
commit d413e04813
4 changed files with 32 additions and 4 deletions

View File

@ -3,6 +3,8 @@
namespace App\Jobs\Common;
use App\Abstracts\Job;
use App\Exceptions\Common\LastDashboard;
use App\Exceptions\Common\NotUserDashboard;
use App\Traits\Users;
class DeleteDashboard extends Job
@ -56,14 +58,14 @@ class DeleteDashboard extends Job
$message = trans('dashboards.error.delete_last');
throw new \Exception($message);
throw new LastDashboard($message);
}
// Check if user can access dashboard
if ($this->isNotUserDashboard($this->dashboard->id)) {
$message = trans('dashboards.error.not_user_dashboard');
throw new \Exception($message);
throw new NotUserDashboard($message);
}
}
}