blob: 77641c4212745ad3257c497461a174af61f316e6 (
plain)
1
2
3
4
5
6
7
8
9
|
<?php
/**
* IOException
* An IO Exception, throw when an IO Exception occurs. Subclass for specific IO Exceptions.
*
* @package Elgg
* @subpackage Exceptions
*/
class IOException extends Exception {}
|