equal
deleted
inserted
replaced
|
1 // Copyright (c) 2001-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
2 // All rights reserved. |
|
3 // This component and the accompanying materials are made available |
|
4 // under the terms of "Eclipse Public License v1.0" |
|
5 // which accompanies this distribution, and is available |
|
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // |
|
15 |
|
16 #ifndef __HTTPCOOKIEERR_H__ |
|
17 #define __HTTPCOOKIEERR_H__ |
|
18 |
|
19 #include <e32std.h> |
|
20 #include <e32base.h> |
|
21 |
|
22 //##ModelId=3B1E52A5010B |
|
23 class HTTPCookiePanic |
|
24 { |
|
25 public: |
|
26 enum THTTPCookiePanic |
|
27 { |
|
28 EInvalidFilterState, |
|
29 EGetCookiesArrayNotEmpty |
|
30 }; |
|
31 |
|
32 //##ModelId=3B1E52A50115 |
|
33 static void Panic(THTTPCookiePanic aPanic); |
|
34 }; |
|
35 |
|
36 inline void HTTPCookiePanic::Panic(HTTPCookiePanic::THTTPCookiePanic aPanic) |
|
37 { |
|
38 _LIT(KHTTPCookiePanic,"HTTP-COOKIE"); |
|
39 User::Panic(KHTTPCookiePanic,aPanic); |
|
40 } |
|
41 |
|
42 #endif // __HTTPCOOKEIERR_H__ |
|
43 |