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 13use Exception; 14 15/** 16 * Thrown when there are issues encoding/decoding ASN1 data. 17 * 18 * @author Chad Sikorra <Chad.Sikorra@gmail.com> 19 */ 20class EncoderException extends Exception 21{ 22} 23