diff options
Diffstat (limited to 'WebCore/dom/ExceptionBase.h')
-rw-r--r-- | WebCore/dom/ExceptionBase.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/WebCore/dom/ExceptionBase.h b/WebCore/dom/ExceptionBase.h index 44fad7e..81e2d7f 100644 --- a/WebCore/dom/ExceptionBase.h +++ b/WebCore/dom/ExceptionBase.h @@ -40,6 +40,7 @@ namespace WebCore { unsigned short code() const { return m_code; } String name() const { return m_name; } String message() const { return m_message; } + String description() const { return m_description; } String toString() const; @@ -50,6 +51,7 @@ namespace WebCore { unsigned short m_code; String m_name; String m_message; + String m_description; }; } // namespace WebCore |