Raytrix Light Field SDK  v3.0
Logo
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Properties Events Groups Pages
Rx::CRxFileNotFoundException Class Reference

Detailed Description

FileNotFoundException {1FCBE5BD-F44B-4A40-97AF-13A7AC0EE6B5}.

Inherits Rx::CRxException.

Public Member Functions

void CopyToHeap (CIException **ppTarget)
 Copy this exception to given target Destination. More...
 
virtual const char * GetFile () const
 Gets the file name. More...
 
virtual const char * GetFunction () const
 Gets the function name. More...
 
virtual const
Interop::Runtime30::CGuid
GetGUID () const
 Gets the unique identifier of this exception. More...
 
CIExceptionGetInnerException () const
 Gets the inner exception. More...
 
virtual unsigned GetLine () const
 Gets the line. More...
 
virtual const char * GetMessageText () const
 Gets the information string. More...
 
virtual const char * GetName () const
 Gets the name of this exception. More...
 
virtual bool HasException (const Rx::Interop::Runtime30::CGuid &xGUID) const
 Query if this exception or one of its inner exceptions has the given GUID. More...
 
void SetGUID (const Interop::Runtime30::CGuid &xGUID)
 Sets the unique identifier of this exception. More...
 
virtual const char * ToString () const
 Convert this CRxException into a string representation. More...
 

Static Public Member Functions

static CRxException Create (const CRxString &sInfo, const char *pcFile, const char *pcFunction, unsigned uLine, Interop::Runtime30::CIException &xInnerException)
 Constructor. More...
 
static CRxException Create (const CRxString &sInfo, const char *pcFile, const char *pcFunction, unsigned uLine)
 Creates this CRxException. More...
 
static Interop::Runtime30::CGuid GetTypeGUID ()
 Gets the unique identifier of this type. More...
 
static const char * GetTypeName ()
 Gets the type name. More...
 

Protected Member Functions

virtual
Interop::Runtime30::CIException
Copy ()
 Copies this CRxException. More...
 
void SetInnerException (CIException &xEx)
 Sets an inner exception. Frees currently assigned inner exception. More...
 
CIExceptionYieldInnerException ()
 Returns the inner exception and yields responsibility. More...
 

Protected Attributes

CRxString m_sExceptionText
 The exception text. We need to hold this variable so that ToString() can return a valid const char*. More...
 
CRxString m_sFile
 The name of the file in which this exception has been thrown. More...
 
CRxString m_sFunction
 The function in which this exception has been thrown. More...
 
CRxString m_sInfo
 The information describing the reason of this exception. More...
 
CRxString m_sName
 The name of this exception. More...
 
unsigned m_uLine
 The line in which this exception has been thrown. More...
 
Interop::Runtime30::CGuid m_xGUID
 Unique identifier for this exception. More...
 

Member Function Documentation

virtual Interop::Runtime30::CIException* Rx::CRxException::Copy ( )
protectedvirtualinherited

Copies this CRxException.

Returns
The copied exception.

Implements Rx::Interop::Runtime30::CIException.

Reimplemented in Rx::ApiLF::CRxApiException.

void Rx::Interop::Runtime30::CIException::CopyToHeap ( CIException **  ppTarget)
inherited

Copy this exception to given target Destination.

Parameters
ppTarget[in,out] If non-null, target for the.
static CRxException Rx::CRxException::Create ( const CRxString sInfo,
const char *  pcFile,
const char *  pcFunction,
unsigned  uLine,
Interop::Runtime30::CIException xInnerException 
)
staticinherited

Constructor.

Parameters
sInfoThe information.
pcFileThe file.
pcFunctionThe function.
uLineThe line.
xInnerException[in] The inner exception.
Returns
The exception.
static CRxException Rx::CRxException::Create ( const CRxString sInfo,
const char *  pcFile,
const char *  pcFunction,
unsigned  uLine 
)
staticinherited

Creates this CRxException.

Parameters
sInfoThe information.
pcFileThe file.
pcFunctionThe function.
uLineThe line.
Returns
The exception.
virtual const char* Rx::CRxException::GetFile ( ) const
virtualinherited

Gets the file name.

Returns
The file name.

Implements Rx::Interop::Runtime30::CIException.

virtual const char* Rx::CRxException::GetFunction ( ) const
virtualinherited

Gets the function name.

Returns
The function name.

Implements Rx::Interop::Runtime30::CIException.

virtual const Interop::Runtime30::CGuid& Rx::CRxException::GetGUID ( ) const
virtualinherited

Gets the unique identifier of this exception.

Returns
The unique identifier.

Implements Rx::Interop::Runtime30::CIException.

CIException* Rx::Interop::Runtime30::CIException::GetInnerException ( ) const
inherited

Gets the inner exception.

Returns
Null if there is no inner exception, else the inner exception.
virtual unsigned Rx::CRxException::GetLine ( ) const
virtualinherited

Gets the line.

Returns
The line number.

Implements Rx::Interop::Runtime30::CIException.

virtual const char* Rx::CRxException::GetMessageText ( ) const
virtualinherited

Gets the information string.

Returns
The information string.

Implements Rx::Interop::Runtime30::CIException.

virtual const char* Rx::CRxException::GetName ( ) const
virtualinherited

Gets the name of this exception.

Returns
The name of this exception.

Implements Rx::Interop::Runtime30::CIException.

static Interop::Runtime30::CGuid Rx::CRxException::GetTypeGUID ( )
staticinherited

Gets the unique identifier of this type.

Returns
The unique identifier of this type.
static const char* Rx::CRxException::GetTypeName ( )
staticinherited

Gets the type name.

Returns
The type name.
virtual bool Rx::CRxException::HasException ( const Rx::Interop::Runtime30::CGuid xGUID) const
virtualinherited

Query if this exception or one of its inner exceptions has the given GUID.

Parameters
xGUID[in] The GUID of the exception to look for.
Returns
True if this exception or one of its inner exceptions has the given GUID, false if not.

Implements Rx::Interop::Runtime30::CIException.

void Rx::CRxException::SetGUID ( const Interop::Runtime30::CGuid xGUID)
inherited

Sets the unique identifier of this exception.

Parameters
xGUIDThe unique identifier.
void Rx::Interop::Runtime30::CIException::SetInnerException ( CIException xEx)
protectedinherited

Sets an inner exception. Frees currently assigned inner exception.

Parameters
xEx[in] The inner exception.
virtual const char* Rx::CRxException::ToString ( ) const
virtualinherited

Convert this CRxException into a string representation.

Returns
This CRxException as a string.

Implements Rx::Interop::Runtime30::CIException.

CIException* Rx::Interop::Runtime30::CIException::YieldInnerException ( )
protectedinherited

Returns the inner exception and yields responsibility.

Returns
The inner exception.

Member Data Documentation

CRxString Rx::CRxException::m_sExceptionText
protectedinherited

The exception text. We need to hold this variable so that ToString() can return a valid const char*.

CRxString Rx::CRxException::m_sFile
protectedinherited

The name of the file in which this exception has been thrown.

CRxString Rx::CRxException::m_sFunction
protectedinherited

The function in which this exception has been thrown.

CRxString Rx::CRxException::m_sInfo
protectedinherited

The information describing the reason of this exception.

CRxString Rx::CRxException::m_sName
protectedinherited

The name of this exception.

unsigned Rx::CRxException::m_uLine
protectedinherited

The line in which this exception has been thrown.

Interop::Runtime30::CGuid Rx::CRxException::m_xGUID
protectedinherited

Unique identifier for this exception.