| 12345678910111213141516171819 |
- <?php
- /**
- * TLDDatabase: Abstraction for Public Suffix List in PHP.
- *
- * @link https://github.com/layershifter/TLDDatabase
- *
- * @copyright Copyright (c) 2016, Alexander Fedyashov
- * @license https://raw.githubusercontent.com/layershifter/TLDDatabase/master/LICENSE Apache 2.0 License
- */
- namespace LayerShifter\TLDDatabase\Exceptions;
- /**
- * Exception for file operations.
- */
- final class IOException extends Exception
- {
- }
|