for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Cryptocurrency list package.
* All cryptocurrencies infos in a single package without using a database.
*
* Copyright (C) 2018-2019 <Crypto Technology srl>
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
declare(strict_types=1);
namespace CryptoTech\Cryptocurrency\Exception;
* Class CryptoNotEnabledException.
class CryptoNotEnabledException extends \InvalidArgumentException
{
* CryptoNotEnabledException constructor.
* @param string $message [optional] The Exception message to throw.
* @param int $code [optional] The Exception code.
* @param \Throwable $previous [optional] The previous throwable used for the exception chaining.
public function __construct($message = '', $code = 0, \Throwable $previous = null)
parent::__construct($message, $code, $previous);
}