mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-10 11:31:26 +01:00
25 lines
368 B
PHP
25 lines
368 B
PHP
<?php
|
|
/*
|
|
* File: InvalidMessageDateException.php
|
|
* Category: Exception
|
|
* Author: M. Goldenbaum
|
|
* Created: 10.03.19 04:31
|
|
* Updated: -
|
|
*
|
|
* Description:
|
|
* -
|
|
*/
|
|
|
|
namespace Webklex\PHPIMAP\Exceptions;
|
|
|
|
use \Exception;
|
|
|
|
/**
|
|
* Class InvalidMessageDateException
|
|
*
|
|
* @package Webklex\PHPIMAP\Exceptions
|
|
*/
|
|
class InvalidMessageDateException extends Exception {
|
|
|
|
}
|