1<?php 2/** 3 * This file is part of the FreeDSx ASN1 package. 4 * 5 * (c) Chad Sikorra <Chad.Sikorra@gmail.com> 6 * 7 * For the full copyright and license information, please view the LICENSE 8 * file that was distributed with this source code. 9 */ 10 11namespace FreeDSx\Asn1\Exception; 12 13/** 14 * Thrown when the encoder determines it doesn't have the full length of data to construct the PDU. If we don't have 15 * enough data in a non-PDU ASN1 element, then an Encoder Exception will be thrown instead. 16 * 17 * @author Chad Sikorra <Chad.Sikorra@gmail.com> 18 */ 19class PartialPduException extends EncoderException 20{ 21} 22