mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-07 10:08:27 +01:00
25 lines
356 B
PHP
25 lines
356 B
PHP
<?php
|
|
/*
|
|
* File: FolderFetchingException.php
|
|
* Category: Exception
|
|
* Author: M. Goldenbaum
|
|
* Created: 05.03.18 23:21
|
|
* Updated: -
|
|
*
|
|
* Description:
|
|
* -
|
|
*/
|
|
|
|
namespace Webklex\PHPIMAP\Exceptions;
|
|
|
|
use \Exception;
|
|
|
|
/**
|
|
* Class FolderFetchingException
|
|
*
|
|
* @package Webklex\PHPIMAP\Exceptions
|
|
*/
|
|
class FolderFetchingException extends Exception {
|
|
|
|
}
|