mirror of
https://github.com/Karaka-Management/Resources.git
synced 2026-01-11 21:38:39 +00:00
15 lines
217 B
PHP
Executable File
15 lines
217 B
PHP
Executable File
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace ZipStream\Exception;
|
|
|
|
use ZipStream\Exception;
|
|
|
|
/**
|
|
* This Exception gets invoked if file or comment encoding is incorrect
|
|
*/
|
|
class EncodingException extends Exception
|
|
{
|
|
}
|