mirror of
https://github.com/pmmp/ext-encoding.git
synced 2024-11-27 04:39:03 +00:00
13 lines
229 B
PHP
13 lines
229 B
PHP
<?php
|
|
|
|
/** @generate-class-entries */
|
|
|
|
namespace pmmp\encoding;
|
|
|
|
/**
|
|
* Thrown by ByteBuffer read functions on failure, usually due to insufficient remaining data
|
|
*/
|
|
final class DataDecodeException extends \RuntimeException{
|
|
|
|
}
|