datacommsserver/networkcontroller/inc/NetConErr.ra
author hgs
Mon, 24 May 2010 18:38:45 +0100
changeset 31 f5b12b673c07
parent 0 dfb7c4ff071f
child 50 afebdb533a85
permissions -rw-r--r--
201019_02

// Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies).
// All rights reserved.
// This component and the accompanying materials are made available
// under the terms of "Eclipse Public License v1.0"
// which accompanies this distribution, and is available
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
//
// Initial Contributors:
// Nokia Corporation - initial contribution.
//
// Contributors:
//
// Description:
//

#include <errors/generic/netconerr.rls>

/*
const TInt KNetConErrorBase = -3600;
const TInt KErrNetConDatabaseDefaultUndefined = KNetConErrorBase - 6;
const TInt KErrNetConDatabaseTypeUnknown = KNetConErrorBase - 7;
const TInt KErrNetConDatabaseNotFound = KNetConErrorBase - 8;
const TInt KErrNetConNoGPRSNetwork = KNetConErrorBase -9;
const TInt KErrNetConIncorrectMSClass = KNetConErrorBase -10;
const TInt KErrNetConInadequateSignalStrengh = KNetConErrorBase -11;
const TInt KErrNetConStateMachineNotAvailable = KNetConErrorBase -12;
*/

RESOURCE ARRAY r_error_net_con_errors
	{
	items=
		{
		SINGLE_ERROR
			{
			text=r_error_netcon_database_default_undefined;	// -3606
			},
		SINGLE_ERROR
			{
			text=r_error_netcon_database_type_unknown;			// -3607
			},
		SINGLE_ERROR
			{
			text=r_error_netcon_database_not_found;			// -3608
			},
		SINGLE_ERROR
			{
			text=r_error_netcon_no_packet_network;				// -3609
			},
		SINGLE_ERROR
			{
			text=r_error_netcon_incorrect_msclass;				// -3610
			},
		SINGLE_ERROR
			{
			text=r_error_netcon_inadequate_signal_strength;	// -3611
			},
		SINGLE_ERROR
			{
			text=r_error_netcon_statemachine_not_available;	// -3612
			}
		};
	}

RESOURCE TBUF r_error_netcon_database_default_undefined	{ buf=STRING_r_error_netcon_database_default_undefined; }
RESOURCE TBUF r_error_netcon_database_type_unknown			{ buf=STRING_r_error_netcon_database_type_unknown		; }
RESOURCE TBUF r_error_netcon_database_not_found			{ buf=STRING_r_error_netcon_database_not_found		; }
RESOURCE TBUF r_error_netcon_no_packet_network				{ buf=STRING_r_error_netcon_no_packet_network			; }
RESOURCE TBUF r_error_netcon_incorrect_msclass				{ buf=STRING_r_error_netcon_incorrect_msclass			; }
RESOURCE TBUF r_error_netcon_inadequate_signal_strength	{ buf=STRING_r_error_netcon_inadequate_signal_strength; }
RESOURCE TBUF r_error_netcon_statemachine_not_available	{ buf=STRING_r_error_netcon_statemachine_not_available; }