1 | <?php |
||
7 | class MatrixException extends \Exception |
||
8 | { |
||
9 | /** |
||
10 | * @return MatrixException |
||
11 | */ |
||
12 | public static function notSquareMatrix() |
||
16 | |||
17 | /** |
||
18 | * @return MatrixException |
||
19 | */ |
||
20 | public static function columnOutOfRange() |
||
24 | |||
25 | /** |
||
26 | * @return MatrixException |
||
27 | */ |
||
28 | public static function singularMatrix() |
||
32 | } |
||
33 |