MassAssignmentException.php
TLDR
This file defines the MassAssignmentException
class, which extends the RuntimeException
class from the Illuminate\Database\Eloquent
namespace.
Classes
MassAssignmentException
This class is an exception class that extends the RuntimeException
. It is used to handle mass assignment exceptions.
<?php
namespace Illuminate\Database\Eloquent;
use RuntimeException;
class MassAssignmentException extends RuntimeException
{
//
}