blob: 57403f44c4383f341880afb20e3726910f62f076 (
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.Core
* @subpackage Exception
*/
class IOException extends Exception {}
|