1<?php 2 3declare(strict_types=1); 4 5/* 6 * This file is a part of dflydev/dot-access-data. 7 * 8 * (c) Dragonfly Development Inc. 9 * 10 * For the full copyright and license information, please view the LICENSE 11 * file that was distributed with this source code. 12 */ 13 14namespace Dflydev\DotAccessData\Exception; 15 16/** 17 * Base runtime exception type thrown by this library 18 */ 19class DataException extends \RuntimeException 20{ 21} 22