for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Part of the Fusion.Collection package.
*
* @license MIT
*/
declare(strict_types=1);
namespace Fusion\Collection\Exceptions;
use Exception;
* Exception class used to specify collections thrown directly by the Fusion.Collection package.
* @since 1.0.0
class CollectionException extends Exception
{
}