1<?php
2
3namespace MatrixPhp\Exceptions;
4
5/**
6 * A generic Matrix error. Specific errors will subclass this.
7 *
8 * @package MatrixPhp\Exceptions
9 */
10class MatrixException extends \Exception {}
11