genericservices/activebackupclient/src/panic.cpp
changeset 0 e4d67989cc36
equal deleted inserted replaced
-1:000000000000 0:e4d67989cc36
       
     1 // Copyright (c) 2004-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 // Server Panic methods
       
    15 // 
       
    16 //
       
    17 
       
    18 /**
       
    19  @file
       
    20 */
       
    21 
       
    22 #include <e32std.h>
       
    23 #include "panic.h"
       
    24 
       
    25 namespace conn
       
    26 	{	
       
    27 	void Panic(TInt aPanicCode)
       
    28 	/**
       
    29     @internalComponent
       
    30     
       
    31 	Calls User::Panic with reason "SB: <panic code>"
       
    32 
       
    33 	@param aPanicCode The panic code as defined in panic.h
       
    34 	@panic aPanicCode The panic code passed in
       
    35 	*/	
       
    36 		{
       
    37 		_LIT(KPanicString,"SB:");
       
    38 		User::Panic(KPanicString,aPanicCode);
       
    39 		}
       
    40 	}