arabica/include/SAX/SAXNotRecognizedException.hpp

55 lines
1.2 KiB
C++
Raw Permalink Normal View History

2003-09-11 12:26:53 +02:00
#ifndef ARABICA_SAXNOTRECOGNIZEDEXCEPTION_H
#define ARABICA_SAXNOTRECOGNIZEDEXCEPTION_H
2002-06-21 13:16:28 +02:00
// SAXNotRecognizedException.h
// $Id$
2007-09-05 00:55:47 +02:00
#include <SAX/SAXException.hpp>
2002-06-21 13:16:28 +02:00
2007-09-05 11:49:18 +02:00
namespace Arabica
{
2002-06-21 13:16:28 +02:00
namespace SAX
{
/**
* Exception class for an unrecognized identifier.
*
* <p>An XMLReader will throw this exception when it finds an
* unrecognized feature or property identifier; SAX applications and
* extensions may use this class for other, similar purposes.</p>
*
* @since SAX 2.0
* @author Jez Higgins,
* <a href="mailto:jez@jezuk.co.uk">jez@jezuk.co.uk</a>
* @version 2.0
* @see SAXNotSupportedException
*/
class SAXNotRecognizedException : public SAXException
{
public:
SAXNotRecognizedException(const std::string& message) :
SAXException(message)
{
} // SAXNotRecognizedException
SAXNotRecognizedException(const SAXNotRecognizedException& rhs) :
SAXException(rhs)
{
} // SAXNotRecognizedException
SAXNotRecognizedException& operator=(const SAXNotRecognizedException& rhs)
{
SAXException::operator =(rhs);
return *this;
} // operator=
virtual ~SAXNotRecognizedException() throw() { }
}; // class SAXNotRecognizedException
} // namespace SAX
2007-09-05 11:49:18 +02:00
} // namespace Arabica
2002-06-21 13:16:28 +02:00
#endif
// end of file