| @@ 8-38 (lines=31) @@ | ||
| 5 | use Exception; |
|
| 6 | use App\Judite\Models\Course; |
|
| 7 | ||
| 8 | class StudentIsNotEnrolledInCourseException extends Exception |
|
| 9 | { |
|
| 10 | /** |
|
| 11 | * The course that user is not enrolled in. |
|
| 12 | * |
|
| 13 | * @var \App\Judite\Models\Course |
|
| 14 | */ |
|
| 15 | protected $course; |
|
| 16 | ||
| 17 | /** |
|
| 18 | * Create a new exception instance. |
|
| 19 | * |
|
| 20 | * @param \App\Judite\Models\Course $course |
|
| 21 | * @param string $message |
|
| 22 | */ |
|
| 23 | public function __construct(Course $course = null, $message = 'User is not enrolled in course.') |
|
| 24 | { |
|
| 25 | parent::__construct($message); |
|
| 26 | $this->course = $course; |
|
| 27 | } |
|
| 28 | ||
| 29 | /** |
|
| 30 | * Get the course of this exception. |
|
| 31 | * |
|
| 32 | * @return \App\Judite\Models\Course |
|
| 33 | */ |
|
| 34 | public function getCourse() |
|
| 35 | { |
|
| 36 | return $this->course; |
|
| 37 | } |
|
| 38 | } |
|
| 39 | ||
| @@ 8-38 (lines=31) @@ | ||
| 5 | use Exception; |
|
| 6 | use App\Judite\Models\Course; |
|
| 7 | ||
| 8 | class UserIsAlreadyEnrolledInCourseException extends Exception |
|
| 9 | { |
|
| 10 | /** |
|
| 11 | * The course that user is already enrolled in. |
|
| 12 | * |
|
| 13 | * @var \App\Judite\Models\Course |
|
| 14 | */ |
|
| 15 | protected $course; |
|
| 16 | ||
| 17 | /** |
|
| 18 | * Create a new exception instance. |
|
| 19 | * |
|
| 20 | * @param \App\Judite\Models\Course $course |
|
| 21 | * @param string $message |
|
| 22 | */ |
|
| 23 | public function __construct(Course $course = null, $message = 'User is already enrolled in course.') |
|
| 24 | { |
|
| 25 | parent::__construct($message); |
|
| 26 | $this->course = $course; |
|
| 27 | } |
|
| 28 | ||
| 29 | /** |
|
| 30 | * Get the course of this exception. |
|
| 31 | * |
|
| 32 | * @return \App\Judite\Models\Course |
|
| 33 | */ |
|
| 34 | public function getCourse() |
|
| 35 | { |
|
| 36 | return $this->course; |
|
| 37 | } |
|
| 38 | } |
|
| 39 | ||