arabica/include/DOM/Events/EventException.hpp
2007-09-05 11:47:13 +00:00

36 lines
563 B
C++

#ifndef JEZUK_EVENTS_EXCEPTION_H
#define JEZUK_EVENTS_EXCEPTION_H
////////////////////////////
// C++ DOM definition
//
// $Id$
////////////////////////////
#include <exception>
namespace Arabica
{
namespace DOM
{
namespace Events
{
class EventException : public std::runtime_error
{
public:
EventException(CODE code = UNSPECIFED_EVENT_TYPE_ERR) : std::runtime_error("EventException") { }
enum CODE
{
UNSPECIFED_EVENT_TYPE_ERR
}; // enum CODE
}; // class EventException
} // namespace Events
} // namespace DOM
} // namespace Arabica
#endif