1<?php 2 3namespace MaxMind\Db\Reader; 4 5use Exception; 6 7/** 8 * This class should be thrown when unexpected data is found in the database. 9 */ 10class InvalidDatabaseException extends Exception 11{ 12} 13