OGRE-Next  2.3
Object-Oriented Graphics Rendering Engine
Ogre::Exception Class Reference

When thrown, provides information about an error that has occurred inside the engine. More...

#include <OgreException.h>

+ Inheritance diagram for Ogre::Exception:

Public Types

enum  ExceptionCodes {
  ERR_CANNOT_WRITE_TO_FILE , ERR_INVALID_STATE , ERR_INVALIDPARAMS , ERR_RENDERINGAPI_ERROR ,
  ERR_DUPLICATE_ITEM , ERR_ITEM_NOT_FOUND , ERR_FILE_NOT_FOUND , ERR_INTERNAL_ERROR ,
  ERR_RT_ASSERTION_FAILED , ERR_NOT_IMPLEMENTED , ERR_INVALID_CALL
}
 Static definitions of error codes. More...
 

Public Member Functions

 Exception (const Exception &rhs)
 Copy constructor. More...
 
 Exception (int number, const String &description, const String &source)
 Default constructor. More...
 
 Exception (int number, const String &description, const String &source, const char *type, const char *file, long line)
 Advanced constructor. More...
 
virtual ~Exception () throw ()
 Needed for compatibility with std::exception. More...
 
virtual const StringgetDescription () const
 Returns a string with only the 'description' field of this exception. More...
 
virtual const StringgetFile () const
 Gets source file name. More...
 
virtual const StringgetFullDescription () const
 Returns a string with the full description of this error. More...
 
virtual long getLine () const
 Gets line number. More...
 
virtual int getNumber () const throw ()
 Gets the error code. More...
 
virtual const StringgetSource () const
 Gets the source function. More...
 
Exceptionoperator= (const Exception &rhs)
 Assignment operator. More...
 
const char * what () const noexcept(true) override
 Override std::exception::what. More...
 

Detailed Description

When thrown, provides information about an error that has occurred inside the engine.

Remarks
OGRE never uses return values to indicate errors. Instead, if an error occurs, an exception is thrown, and this is the object that encapsulates the detail of the problem. The application using OGRE should always ensure that the exceptions are caught, so all OGRE engine functions should occur within a try{} catch(Ogre::Exception& e) {} block.
The user application should never create any instances of this object unless it wishes to unify its error handling using the same object.

Member Enumeration Documentation

◆ ExceptionCodes

Static definitions of error codes.

Enumerator
ERR_CANNOT_WRITE_TO_FILE 
ERR_INVALID_STATE 
ERR_INVALIDPARAMS 
ERR_RENDERINGAPI_ERROR 
ERR_DUPLICATE_ITEM 
ERR_ITEM_NOT_FOUND 
ERR_FILE_NOT_FOUND 
ERR_INTERNAL_ERROR 
ERR_RT_ASSERTION_FAILED 
ERR_NOT_IMPLEMENTED 
ERR_INVALID_CALL 

Constructor & Destructor Documentation

◆ Exception() [1/3]

Ogre::Exception::Exception ( int  number,
const String description,
const String source 
)

Default constructor.

◆ Exception() [2/3]

Ogre::Exception::Exception ( int  number,
const String description,
const String source,
const char *  type,
const char *  file,
long  line 
)

Advanced constructor.

◆ Exception() [3/3]

Ogre::Exception::Exception ( const Exception rhs)

Copy constructor.

◆ ~Exception()

virtual Ogre::Exception::~Exception ( )
throw (
)
virtual

Needed for compatibility with std::exception.

Member Function Documentation

◆ getDescription()

virtual const String& Ogre::Exception::getDescription ( ) const
inlinevirtual

Returns a string with only the 'description' field of this exception.

Use getFullDescriptionto get a full description of the error including line number, error number and what function threw the exception.

◆ getFile()

virtual const String& Ogre::Exception::getFile ( ) const
inlinevirtual

Gets source file name.

◆ getFullDescription()

virtual const String& Ogre::Exception::getFullDescription ( ) const
virtual

Returns a string with the full description of this error.

Remarks
The description contains the error number, the description supplied by the thrower, what routine threw the exception, and will also supply extra platform-specific information where applicable. For example - in the case of a rendering library error, the description of the error will include both the place in which OGRE found the problem, and a text description from the 3D rendering library, if available.

◆ getLine()

virtual long Ogre::Exception::getLine ( ) const
inlinevirtual

Gets line number.

◆ getNumber()

virtual int Ogre::Exception::getNumber ( ) const
throw (
)
virtual

Gets the error code.

◆ getSource()

virtual const String& Ogre::Exception::getSource ( ) const
inlinevirtual

Gets the source function.

◆ operator=()

Exception& Ogre::Exception::operator= ( const Exception rhs)

Assignment operator.

◆ what()

const char* Ogre::Exception::what ( ) const
inlineoverridenoexcept

Override std::exception::what.


The documentation for this class was generated from the following file: