Nelmio\Alice\Throwable\Exception\ParameterNotFoundExceptionFactory::create PHP Method

create() public static method

public static create ( string $key ) : ParameterNotFoundException
$key string
return ParameterNotFoundException
    public static function create(string $key) : ParameterNotFoundException
    {
        return new ParameterNotFoundException(sprintf('Could not find the parameter "%s".', $key));
    }

Usage Example

コード例 #1
0
 public function testTestCreateNewExceptionWithFactory()
 {
     $exception = ParameterNotFoundExceptionFactory::create('foo');
     $this->assertEquals('Could not find the parameter "foo".', $exception->getMessage());
     $this->assertEquals(0, $exception->getCode());
     $this->assertNull($exception->getPrevious());
 }
All Usage Examples Of Nelmio\Alice\Throwable\Exception\ParameterNotFoundExceptionFactory::create
ParameterNotFoundExceptionFactory