mirror of
https://github.com/moodle/moodle.git
synced 2025-07-19 05:11:33 +02:00
No changes from the upstream version have been made, it is recommended by upstream to install these depdencies via composer - but the composer installation is bundled with a load of test files, shell scripts etc (and we don't use composer to manage 'production dependencies') so we have to do it manually.
11 lines
177 B
PHP
11 lines
177 B
PHP
<?php
|
|
|
|
namespace MaxMind\Db\Reader;
|
|
|
|
/**
|
|
* This class should be thrown when unexpected data is found in the database.
|
|
*/
|
|
class InvalidDatabaseException extends \Exception
|
|
{
|
|
}
|