2015-02-06 19:31:38 +01:00
|
|
|
<?php
|
2016-05-20 11:59:54 +02:00
|
|
|
/**
|
|
|
|
* ValidationException.php
|
|
|
|
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
|
|
|
*
|
2016-10-05 06:52:15 +02:00
|
|
|
* This software may be modified and distributed under the terms of the
|
|
|
|
* Creative Commons Attribution-ShareAlike 4.0 International License.
|
|
|
|
*
|
|
|
|
* See the LICENSE file for details.
|
2016-05-20 11:59:54 +02:00
|
|
|
*/
|
|
|
|
|
2016-02-05 12:08:25 +01:00
|
|
|
declare(strict_types = 1);
|
2015-02-08 01:15:15 +01:00
|
|
|
namespace FireflyIII\Exceptions;
|
2015-02-06 19:31:38 +01:00
|
|
|
|
|
|
|
/**
|
2015-02-08 01:15:15 +01:00
|
|
|
* Class ValidationExceptions
|
2015-02-06 19:31:38 +01:00
|
|
|
*
|
|
|
|
* @package FireflyIII\Exception
|
|
|
|
*/
|
|
|
|
class ValidationException extends \Exception
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|