mirror of https://github.com/itflow-org/itflow
25 lines
389 B
PHP
25 lines
389 B
PHP
<?php
|
|
/*
|
|
* File: InvalidWhereQueryCriteriaException.php
|
|
* Category: Exception
|
|
* Author: M. Goldenbaum
|
|
* Created: 21.07.18 19:04
|
|
* Updated: -
|
|
*
|
|
* Description:
|
|
* -
|
|
*/
|
|
|
|
namespace Webklex\PHPIMAP\Exceptions;
|
|
|
|
use \Exception;
|
|
|
|
/**
|
|
* Class InvalidWhereQueryCriteriaException
|
|
*
|
|
* @package Webklex\PHPIMAP\Exceptions
|
|
*/
|
|
class InvalidWhereQueryCriteriaException extends Exception {
|
|
|
|
}
|