|
1 /* |
|
2 * Copyright (c) 2004 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: Declaration of the error codes of the DbCreator. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 |
|
21 #ifndef DBCREATOR_ERRORS_H |
|
22 #define DBCREATOR_ERRORS_H |
|
23 |
|
24 // INCLUDE FILES |
|
25 |
|
26 #include <e32base.h> |
|
27 |
|
28 // The potential errors. |
|
29 const TInt KErrApIsNotCreated = -600; |
|
30 const TInt KErrGivenRealIdNotExists = -601; |
|
31 const TInt KErrGivenRealNameNotExists = -602; |
|
32 const TInt KErrTooMuchTag = -603; |
|
33 const TInt KErrInvaildPolicyId = -604; |
|
34 const TInt KErrComment = -605; |
|
35 const TInt KErrInvalidContent = -606; |
|
36 const TInt KErrAssertionFailed = -607; |
|
37 const TInt KErrFileCannotBeOpened = -608; |
|
38 const TInt KErrWLANTablesMissing = -609; |
|
39 const TInt KErrInvalidParameter = -610; |
|
40 const TInt KErrInvalidExtension = -611; |
|
41 |
|
42 //Panic codes |
|
43 const TInt KErrInvalidCase = -700; |
|
44 const TInt KErrOutOfRange = -701; |
|
45 |
|
46 //Panic texts |
|
47 _LIT16( KPanicInvalidCase, "Invalid case" ); |
|
48 _LIT16( KPanicOutOfRange, "Value is out of range" ); |
|
49 |
|
50 |
|
51 #endif // DBCREATOR_ERRORS_H |
|
52 |
|
53 |
|
54 // End of File. |