forked from Wavyzz/dolibarr
25 lines
377 B
PHP
25 lines
377 B
PHP
<?php
|
|
/*
|
|
* File: MessageHeaderFetchingException.php
|
|
* Category: Exception
|
|
* Author: M. Goldenbaum
|
|
* Created: 05.03.18 23:21
|
|
* Updated: -
|
|
*
|
|
* Description:
|
|
* -
|
|
*/
|
|
|
|
namespace Webklex\PHPIMAP\Exceptions;
|
|
|
|
use \Exception;
|
|
|
|
/**
|
|
* Class MessageHeaderFetchingException
|
|
*
|
|
* @package Webklex\PHPIMAP\Exceptions
|
|
*/
|
|
class MessageHeaderFetchingException extends Exception {
|
|
|
|
}
|