10 lines
111 B
PHP
10 lines
111 B
PHP
<?php
|
|
|
|
namespace IO\Exception;
|
|
|
|
use RuntimeException;
|
|
|
|
abstract class IOException extends RuntimeException
|
|
{
|
|
}
|