for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Created by gerk on 30.10.17 06:59
*/
namespace PeekAndPoke\Component\Slumber\Data\MongoDb\Error;
use PeekAndPoke\Component\Slumber\Data\Error\UnknownError;
*
* @author Karsten J. Gerber <[email protected]>
class MongoDbUnknownError extends UnknownError
{
public static function from(\Exception $exception)
return new static($exception->getMessage(), $exception);
}