mirror of
https://github.com/simshaun/recurr.git
synced 2025-01-17 16:08:14 +01:00
18 lines
278 B
PHP
18 lines
278 B
PHP
<?php
|
|
|
|
/*
|
|
* Copyright 2013 Shaun Simmons
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Recurr;
|
|
|
|
/**
|
|
* The base Recurr exception class
|
|
*/
|
|
class Exception extends \Exception
|
|
{
|
|
}
|