Subversion-Projekte lars-tiefland.laravel_shop

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
148 lars 1
<?php
2
 
3
declare(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
 
14
namespace Dflydev\DotAccessData\Exception;
15
 
16
/**
17
 * Base runtime exception type thrown by this library
18
 */
19
class DataException extends \RuntimeException
20
{
21
}