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