Subversion-Projekte lars-tiefland.laravel_shop

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
148 lars 1
<?php
2
 
3
declare(strict_types=1);
4
 
5
namespace Brick\Math\Exception;
6
 
7
/**
8
 * Exception thrown when attempting to perform an unsupported operation, such as a square root, on a negative number.
9
 */
10
class NegativeNumberException extends MathException
11
{
12
}