mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-08 02:28:23 +01:00
25 lines
359 B
PHP
25 lines
359 B
PHP
<?php
|
|
/*
|
|
* File: MessageNotFoundException.php
|
|
* Category: Exception
|
|
* Author: M. Goldenbaum
|
|
* Created: 25.01.21 18:19
|
|
* Updated: -
|
|
*
|
|
* Description:
|
|
* -
|
|
*/
|
|
|
|
namespace Webklex\PHPIMAP\Exceptions;
|
|
|
|
use \Exception;
|
|
|
|
/**
|
|
* Class MessageNotFoundException
|
|
*
|
|
* @package Webklex\PHPIMAP\Exceptions
|
|
*/
|
|
class MessageNotFoundException extends Exception {
|
|
|
|
}
|