equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2008-2010 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: |
|
15 * |
|
16 */ |
|
17 |
|
18 #include "libraryloaderexception.h" |
|
19 |
|
20 using namespace java::util; |
|
21 |
|
22 OS_EXPORT LibraryLoaderException::LibraryLoaderException(int aErrCode, |
|
23 const std::string& aMessage, |
|
24 const std::string& aFile, |
|
25 const std::string& aMethod, |
|
26 int aLine) throw() |
|
27 : ExceptionBase(aErrCode, |
|
28 aMessage, |
|
29 aFile, |
|
30 aMethod, |
|
31 aLine) |
|
32 { |
|
33 |
|
34 } |
|
35 |
|
36 OS_EXPORT LibraryLoaderException::LibraryLoaderException(int aErrCode, |
|
37 int aStatusCode, |
|
38 const std::string& aMessage, |
|
39 const std::string& aFile, |
|
40 const std::string& aMethod, |
|
41 int aLine) throw() |
|
42 : ExceptionBase(aErrCode, |
|
43 aStatusCode, |
|
44 aMessage, |
|
45 aFile, |
|
46 aMethod, |
|
47 aLine) |
|
48 { |
|
49 |
|
50 } |
|
51 |
|
52 OS_EXPORT LibraryLoaderException::~LibraryLoaderException() throw() |
|
53 { |
|
54 |
|
55 } |
|
56 |