mirror of
https://github.com/jezhiggins/arabica
synced 2024-11-17 07:48:50 +01:00
53 lines
1.2 KiB
C++
53 lines
1.2 KiB
C++
#ifndef ARARBICA_SAXNOTSUPPORTEDEXCEPTION_H
|
|
#define ARARBICA_SAXNOTSUPPORTEDEXCEPTION_H
|
|
|
|
// SAXNotSupportedException.h
|
|
// $Id$
|
|
|
|
|
|
#include <SAX/SAXException.h>
|
|
|
|
namespace SAX
|
|
{
|
|
|
|
/**
|
|
* Exception class for an unsupported operation.
|
|
*
|
|
* <p>An XMLReader will throw this exception when it recognizes a
|
|
* feature or property identifier, but cannot perform the requested
|
|
* operation (setting a state or value). Other SAX2 applications and
|
|
* extensions may use this class for 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 SAXNotRecognizedException
|
|
*/
|
|
class SAXNotSupportedException : public SAXException
|
|
{
|
|
public:
|
|
SAXNotSupportedException(const std::string& message) :
|
|
SAXException(message)
|
|
{
|
|
} // SAXNotSupportedException
|
|
|
|
SAXNotSupportedException(const SAXNotSupportedException& rhs) :
|
|
SAXException(rhs)
|
|
{
|
|
} // SAXNotSupportedException
|
|
|
|
SAXNotSupportedException& operator=(const SAXNotSupportedException& rhs)
|
|
{
|
|
SAXException::operator =(rhs);
|
|
return *this;
|
|
} // operator=
|
|
|
|
virtual ~SAXNotSupportedException() throw() { }
|
|
|
|
}; // class SAXNotSupportedException
|
|
|
|
} // namespace SAX
|
|
|
|
#endif
|
|
// end of file
|