for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Mezon\Service\Tests;
class ExceptionTestingBaseService extends TestingBaseService
{
protected function initCustomRoutes(): void
// and here we emulate error
throw (new \Exception("msg", 1));
}