Sha256: abba3e48068b0c9c4365e9e5c473c7d82b3b156714893c1a2755fa6d03da5670
Contents?: true
Size: 766 Bytes
Versions: 42
Compression:
Stored size: 766 Bytes
Contents
<?php /* * This file is part of Composer. * * (c) Nils Adermann <naderman@naderman.de> * Jordi Boggiano <j.boggiano@seld.be> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Composer\DependencyResolver; /** * @author Nils Adermann <naderman@naderman.de> */ class SolverBugException extends \RuntimeException { public function __construct($message) { parent::__construct( $message."\nThis exception was most likely caused by a bug in Composer.\n". "Please report the command you ran, the exact error you received, and your composer.json on https://github.com/composer/composer/issues - thank you!\n" ); } }
Version data entries
42 entries across 42 versions & 1 rubygems