for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Transfer\EzPlatform\Exception;
class UnsupportedObjectOperationException extends \Exception
{
/**
* UnsupportedObjectOperationException constructor.
*
* @param string $expectedObject
* @param string $actualObject
*/
public function __construct($expectedObject, $actualObject)
parent::__construct(sprintf('Expected "%s", got "%s".', $expectedObject, $actualObject));
}