1<?php
2
3namespace MatrixPhp\Exceptions;
4
5/**
6 * Simple exception to differentiate validation exception from other exceptions
7 *
8 * @package MatrixPhp\Exceptions
9 */
10class ValidationException extends \Exception {}
11