Website modules per CorePHP pattern: - Website\Lethean: lthn.io homepage (domain: lthn.io) - Website\Explorer: block explorer (domain: explorer.lthn.io) - Website\Names: TLD registrar (domain: names.lthn.io) - Website\Trade: DEX frontend (domain: trade.lthn.io) - Website\Pool: mining pool (domain: pool.lthn.io) Each binds to its subdomain via DomainResolving event and falls back to path prefix (/explorer, /names, etc) on lthn.io. Autoloader updated with Website\ namespace. Co-Authored-By: Charon <charon@lethean.io>
21 lines
415 B
PHP
21 lines
415 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/*
|
|
* This file is a part of dflydev/dot-access-data.
|
|
*
|
|
* (c) Dragonfly Development Inc.
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Dflydev\DotAccessData\Exception;
|
|
|
|
/**
|
|
* Base runtime exception type thrown by this library
|
|
*/
|
|
class DataException extends \RuntimeException
|
|
{
|
|
}
|