1 /**
2 * This file is part of the equanda project.
3 *
4 * The contents of this file are subject to the Mozilla Public License Version 1.1 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at http://www.mozilla.org/MPL/
7 *
8 * Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
9 * ANY KIND, either express or implied. See the License for the specific language governing rights and
10 * limitations under the License.
11 *
12 * Alternatively, the contents of this file may be used under the terms of
13 * either the GNU General Public License Version 2 or later (the "GPL"), or
14 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
15 * in which case the provisions of the GPL or the LGPL are applicable instead
16 * of those above. If you wish to allow use of your version of this file only
17 * under the terms of either the GPL or the LGPL, and not to allow others to
18 * use your version of this file under the terms of the MPL, indicate your
19 * decision by deleting the provisions above and replace them with the notice
20 * and other provisions required by the GPL or the LGPL. If you do not delete
21 * the provisions above, a recipient may use your version of this file under
22 * the terms of any one of the MPL, the GPL or the LGPL.
23 */
24
25 package org.equanda.test;
26
27 /**
28 * Codes for exceptions in the custom mediators, used for internationalization
29 *
30 * @author NetRom team
31 */
32 public interface TestExceptionCodes
33 {
34 public static int EPE_PROBLEM_IN_AUTOPASSPORT = 100001;
35 public static int EPE_PROBLEM_IN_AUTOMULTIPLEAUTO = 100002;
36 public static int EPE_PROBLEM_IN_AUTOMULTIPLEPASSPORT = 100003;
37 public static int EPE_SAME_IDENTIFIER_USED_FOR_EDIT_AND_RUN_ACCESS = 100004;
38 public static int EPE_RESULTNAME_CANNOT_BE_NULL = 100005;
39 public static int EPE_MERGENAME_MUST_EXIST_CANNOT_BE_NULL = 100006;
40 public static int EPE_ROLE_NOT_FOUND = 100007;
41
42 public static int ECV_NUMBER_NOT_MULTIPLE_OF_100 = 110001;
43 public static int ECV_REMOVE2_NOT_ALOWED_STRING_TO_ADD = 110002;
44 public static int ECV_REMOVE2_NOT_ALOWED_STRING_TO_REMOVE = 110003;
45
46 public static int EDE_TOO_SLOW_FOR_A_VEHICLE_WITH_WINGS = 140001;
47 }