javacommons/gcfbase/src/pushexception.cpp
branchRCL_3
changeset 19 04becd199f91
equal deleted inserted replaced
16:f5050f1da672 19:04becd199f91
       
     1 /*
       
     2 * Copyright (c) 2009 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 "pushexception.h"
       
    19 
       
    20 using namespace java::push;
       
    21 
       
    22 /**
       
    23  *
       
    24  */
       
    25 OS_EXPORT PushException::PushException(int aStatus,const std::string& aMessage,
       
    26                                        const std::string& aFile,
       
    27                                        const std::string& aMethod, int aLine)throw()
       
    28         : ExceptionBase(aStatus,aMessage,aFile,aMethod,aLine)
       
    29 {
       
    30 }
       
    31 
       
    32 /**
       
    33  *
       
    34  */
       
    35 OS_EXPORT PushException::PushException(int aStatus,const std::wstring& aMessage,
       
    36                                        const std::string& aFile,
       
    37                                        const std::string& aMethod, int aLine)throw()
       
    38         : ExceptionBase(aStatus,aMessage,aFile,aMethod,aLine)
       
    39 {
       
    40 }
       
    41 
       
    42 /**
       
    43  *
       
    44  */
       
    45 OS_EXPORT PushException::~PushException() throw()
       
    46 {
       
    47 }
       
    48 
       
    49 /**
       
    50  *
       
    51  */
       
    52 OS_EXPORT PushException::PushException(const PushException& x)
       
    53         : ExceptionBase(x)
       
    54 {
       
    55 }
       
    56 
       
    57 
       
    58