diff -r 0e652f8f1fbd -r 24fd82631616 camerauis/cameraxui/cxengine/inc/cxeexception.h --- a/camerauis/cameraxui/cxengine/inc/cxeexception.h Thu Jul 15 01:55:05 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,59 +0,0 @@ -/* -* Copyright (c) 2010 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: -* -*/ - -#ifndef CXEEXCEPTION_H -#define CXEEXCEPTION_H - -#include - -/*! -* Exception class for engine internal errors. -* Contains one integer which can be used to carry error code, -* in normal cases which is of type CxeError::Id. -*/ -class CxeException : public std::exception -{ -public: - /*! - * Constructor. - */ - explicit CxeException(int error) : mError(error) {}; - - /*! - * Destructor. - */ - virtual ~CxeException() throw() {}; - - /*! - * Get the error code causing this exception. - * @return The error code. - */ - int error() const { return mError; }; - - /*! - * Helper method to throw exception if given status code is an error. - * Everything but zero is considered error. - * @param status The status code to check. - */ - static void throwIfError(int status) { if (status) { throw new CxeException(status); } } - -private: - //! Error code for this exception. - int mError; -}; - -#endif // CXEEXCEPTION_H