[Home] [Prev] [Next] [Up]


XError abstract class

Abstract error reporting class

Usage:

#include <XError.h>

class XError;

Description

This is the abstract class which forms the root of the error reporting classes processed by the YAAF libraries.

Construction/Destruction Methods

XError::XError()

Default constructor does nothing but serves as a placeholder.

XError::~XError()

Default destructor does nothing but serves as a placeholder.

Error reporting

void XError::DisplayError(void)

Abstract virtual method is the default method called when the error is processed. Error reporting clases need to implement this method to report the specified error.


[Home] [Prev] [Next] [Up]