12 lines
147 B
PHP
Executable File
12 lines
147 B
PHP
Executable File
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace ZipStream;
|
|
|
|
/**
|
|
* This class is only for inheriting
|
|
*/
|
|
abstract class Exception extends \Exception
|
|
{
|
|
}
|