for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Domain\Exception;
/**
* When client makes a request that attempts to do something that is
* not designed to be possible in the application.
*/
class InvalidOperationException extends \RuntimeException
{
* @param string $message The message to show to the client. MUST NOT contain sensitive information.
public function __construct(string $message)
parent::__construct($message);
}