for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* A php library for using the Emarsys API.
*
* @link https://github.com/quitoque/emarsys-php-client
* @package emarsys-php-client
* @license MIT
* @copyright Copyright (c) 2017 Quitoque <[email protected]>
*/
namespace Emarsys\Exception\Api;
use Emarsys\Exception\EmarsysException;
/**
* Class NotFoundException.
* @author Claude Khedhiri <[email protected]>
class NotFoundException extends \BadMethodCallException implements EmarsysException
{
public function __construct($class = '', $code = 0, \Throwable $previous = null)
parent::__construct(sprintf('%s', $class), $code, $previous);
}