2002-06-03 13:45:30 +00:00
|
|
|
#ifndef XSCREEN_H
|
|
|
|
#define XSCREEN_H
|
|
|
|
|
|
|
|
#include "XBase.h"
|
|
|
|
|
2002-07-29 16:07:26 +00:00
|
|
|
//! Generic screen exception
|
2002-06-03 13:45:30 +00:00
|
|
|
class XScreen : public XBase { };
|
|
|
|
|
2002-07-29 16:07:26 +00:00
|
|
|
//! Cannot open screen exception
|
|
|
|
/*!
|
|
|
|
Thrown when a screen cannot be opened or initialized.
|
|
|
|
*/
|
2002-06-03 13:45:30 +00:00
|
|
|
class XScreenOpenFailure : public XScreen {
|
|
|
|
protected:
|
|
|
|
virtual CString getWhat() const throw();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|