~ubuntu-branches/ubuntu/natty/libxml++2.6/natty

« back to all changes in this revision

Viewing changes to libxml++/exceptions/validity_error.cc

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Holbach
  • Date: 2007-09-18 11:32:24 UTC
  • mfrom: (1.1.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20070918113224-7x031mzf1shoozxx
Tags: 2.20.0-0ubuntu1
* New upstream release:
  - Element: Added get_attribute_value(), to get a simple text value for an
    attribute.
  - Added an experimental --enable-api-exceptions configure option, to allow
    libxml++ to build without exceptions.
* debian/libxml++2.6-doc.docs: 2.18 -> 2.20.

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
 
13
13
void validity_error::Raise() const
14
14
{
 
15
  #ifdef LIBXMLCPP_EXCEPTIONS_ENABLED
15
16
  throw *this;
 
17
  #endif //LIBXMLCPP_EXCEPTIONS_ENABLED
16
18
}
17
19
 
18
20
exception* validity_error::Clone() const