MathException.php
TLDR
The MathException.php
file contains the definition of the MathException
class, which extends the built-in RuntimeException
class.
Classes
MathException
The MathException
class extends the RuntimeException
class and is used to represent exceptions related to mathematical operations. It does not include any additional functionality or methods.
<?php
namespace Illuminate\Support\Exceptions;
use RuntimeException;
class MathException extends RuntimeException
{
//
}