for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Exceptions;
use Exception;
class ExchangeEnrollmentsOnDifferentCoursesException extends Exception
{
/**
* Create a new exception instance.
*
* @param string $message
*/
public function __construct($message = 'Cannot exchange to shifts on different courses.')
parent::__construct($message);
}