Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
CRAP
0.00% covered (danger)
0.00%
0 / 1
common_exception_PreConditionFailure
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
0.00% covered (danger)
0.00%
0 / 1
 getUserMessage
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
1<?php
2
3/*
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; under version 2
7 * of the License (non-upgradable).
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17 *
18 *
19 */
20/**
21 * Generis Object Oriented API - common/exception/class.InvalidArgumentType.php
22 *
23 * $Id$
24 *
25 * This file is part of Generis Object Oriented API.
26 *
27 * Automatically generated on 30.01.2012, 16:44:05 with ArgoUML PHP module
28 * (last revised $Date: 2010-01-12 20:14:42 +0100 (Tue, 12 Jan 2010) $)
29 *
30 * @author patrick,
31 * @package generis
32
33 */
34
35
36
37/* user defined includes */
38
39
40
41/* user defined constants */
42
43
44
45/**
46 * a useful exception
47 * @access public
48 * @author Patrick Plichart
49 * @package generis
50
51 */
52class common_exception_PreConditionFailure extends common_exception_ClientException
53{
54    public function getUserMessage()
55    {
56        return __("One of the precondition for this type of request was not satisfied");
57    }
58}