glibmm  2.36.1
Public Types | Public Member Functions | List of all members
Glib::MarkupError Class Reference

Exception class for markup parsing errors. More...

#include <glibmm/markup.h>

Inheritance diagram for Glib::MarkupError:
Inheritance graph
[legend]

Public Types

enum  Code {
  BAD_UTF8,
  EMPTY,
  PARSE,
  UNKNOWN_ELEMENT,
  UNKNOWN_ATTRIBUTE,
  INVALID_CONTENT,
  MISSING_ATTRIBUTE
}

Public Member Functions

 MarkupError (Code error_code, const Glib::ustring& error_message)
 MarkupError (GError* gobject)
Code code () const
- Public Member Functions inherited from Glib::Error
 Error ()
 Error (GQuark domain, int code, const Glib::ustring& message)
 Error (GError* gobject, bool take_copy=false)
 Error (const Error& other)
Erroroperator= (const Error& other)
virtual ~Error () throw ()
GQuark domain () const
virtual Glib::ustring what () const
bool matches (GQuark domain, int code) const
GError* gobj ()
const GError* gobj () const
- Public Member Functions inherited from Glib::Exception
virtual ~Exception ()=0 throw ()

Additional Inherited Members

- Protected Attributes inherited from Glib::Error
GError* gobject_

Detailed Description

Exception class for markup parsing errors.

Member Enumeration Documentation

Enumerator:
BAD_UTF8 

text being parsed was not valid UTF-8

Text being parsed was not valid UTF-8.

EMPTY 

document contained nothing, or only whitespace

Document contained nothing, or only whitespace.

PARSE 

document was ill-formed

Document was ill-formed.

UNKNOWN_ELEMENT 

error should be set by MarkupParser functions; element wasn't known

This error should be set by Glib::Markup::Parser virtual methods; element wasn't known.

UNKNOWN_ATTRIBUTE 

error should be set by MarkupParser functions; attribute wasn't known

This error should be set by Glib::Markup::Parser virtual methods; attribute wasn't known.

INVALID_CONTENT 

error should be set by MarkupParser functions; content was invalid

This error should be set by Glib::Markup::Parser virtual methods; something was wrong with contents of the document, e.g. invalid attribute value.

MISSING_ATTRIBUTE 

error should be set by MarkupParser functions; a required attribute was missing

Constructor & Destructor Documentation

Glib::MarkupError::MarkupError ( Code  error_code,
const Glib::ustring error_message 
)
Glib::MarkupError::MarkupError ( GError *  gobject)
explicit

Member Function Documentation

Code Glib::MarkupError::code ( ) const

Reimplemented from Glib::Error.