ewallah / moodle-availability_relativedate

Relative dates in Moodle
https://moodle.org/plugins/availability_relativedate
GNU General Public License v3.0
8 stars 8 forks source link

Class "availability_relativedate\Exception" not found. #23

Closed mazitov-az closed 12 months ago

mazitov-az commented 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:

...
} catch (Exception $e) {
...

with:


...
} catch (\Exception $e) {
...
ewallah commented 12 months ago

THX for the error report. There were some additional changes needed in the phpunit test, but the item is fixed in v4.1.0