mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-24 23:57:52 +08:00
20 lines
392 B
PHP
20 lines
392 B
PHP
|
<?php
|
||
|
|
||
|
/*
|
||
|
* This file is part of the Imagine package.
|
||
|
*
|
||
|
* (c) Bulat Shakirzyanov <mallluhuct@gmail.com>
|
||
|
*
|
||
|
* For the full copyright and license information, please view the LICENSE
|
||
|
* file that was distributed with this source code.
|
||
|
*/
|
||
|
|
||
|
namespace Imagine\Exception;
|
||
|
|
||
|
/**
|
||
|
* Imagine-specific runtime exception
|
||
|
*/
|
||
|
class RuntimeException extends \RuntimeException implements Exception
|
||
|
{
|
||
|
}
|