WrongUserinput
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 1
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 1
dl 0
loc 1
c 0
b 0
f 0
wmc 0
1
<?php
2
/**
3
 * EGroupware API - Exceptions
4
 *
5
 * @link http://www.egroupware.org
6
 * @author Ralf Becker <RalfBecker-AT-outdoor-training.de>
7
 * @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
8
 * @package api
9
 * @subpackage exception
10
 * @access public
11
 * @version $Id$
12
 */
13
14
namespace EGroupware\Api\Exception;
15
16
/**
17
 * Wrong or missing required user input: message should be translated so it can be shown directly to the user
18
 *
19
 */
20
class WrongUserinput extends AssertionFailed { }
21