Closed mazitov-az closed 12 months ago
Hi! In following file: https://github.com/ewallah/moodle-availability_relativedate/blob/main/classes/condition.php#L301
I faced an Exception: Class "availability_relativedate\Exception" not found.
I suggest adding to the beginning of the file: use Exception; or replace following code in line 301:
use Exception;
... } catch (Exception $e) { ...
with:
... } catch (\Exception $e) { ...
THX for the error report. There were some additional changes needed in the phpunit test, but the item is fixed in v4.1.0
Hi! In following file: https://github.com/ewallah/moodle-availability_relativedate/blob/main/classes/condition.php#L301
I faced an Exception: Class "availability_relativedate\Exception" not found.
I suggest adding to the beginning of the file:
use Exception;
or replace following code in line 301:with: