* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Messenger\Exception; /** * Exception that holds multiple exceptions thrown by one or more handlers and/or messages. * * @author Jeroen */ interface WrappedExceptionsInterface { /** * @return \Throwable[] */ public function getWrappedExceptions(?string $class = null, bool $recursive = false): array; }