for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Onoi\CallbackContainer\Exception;
use RuntimeException;
/**
* @license GNU GPL v2+
* @since 2.0
*
* @author mwjames
*/
class ServiceAliasAssignmentException extends RuntimeException {
* @param string $alias
public function __construct( $alias ) {
parent::__construct( "`{$alias}` is already used as service and can therefore not be used as alias." );
}