\League\FactoryMuffin\ExceptionsDeletingFailedException

This is the deleting failed exception class.

This is thrown if one or more models threw an exception when we tried to delete them. It's important to note that this exception will only be thrown after we've attempted to delete all the saved models. You may access each underlying exception, in the order they were thrown during the whole process, by calling getExceptions to return an array of exceptions.

Summary

Methods
Properties
Constants
__construct()
getExceptions()
No public properties found
No constants found
No protected methods found
No protected properties found
N/A
No private methods found
$exceptions
N/A

Properties

$exceptions

$exceptions : array<mixed,\Exception>

The array of exceptions.

Type

array<mixed,\Exception>

Methods

__construct()

__construct(array<mixed,\Exception>  $exceptions, string|null  $message = null) : void

Create a new instance.

Parameters

array<mixed,\Exception> $exceptions
string|null $message

getExceptions()

getExceptions() : array<mixed,\Exception>

Get the array of exceptions.

Returns

array<mixed,\Exception>