CMS 3D CMS Logo

Public Member Functions | Private Attributes

FWExpressionException Class Reference

#include <Fireworks/Core/interface/FWExpressionException.h>

List of all members.

Public Member Functions

long column () const
 FWExpressionException (const std::string &iWhat, long iColumn)
const std::string & what () const

Private Attributes

long m_column
std::string m_what

Detailed Description

Description: Holds information about an expression parsing failure

Usage: <usage>

Definition at line 29 of file FWExpressionException.h.


Constructor & Destructor Documentation

FWExpressionException::FWExpressionException ( const std::string &  iWhat,
long  iColumn 
) [inline]

Definition at line 32 of file FWExpressionException.h.

                                                               :
      m_what(iWhat), m_column(iColumn) {
   }

Member Function Documentation

long FWExpressionException::column ( ) const [inline]

Definition at line 42 of file FWExpressionException.h.

References m_column.

Referenced by CmsShowEDI::runFilter(), and CmsShowEDI::runSelection().

                       {
      return m_column;
   }
const std::string& FWExpressionException::what ( ) const [inline]

Definition at line 38 of file FWExpressionException.h.

References m_what.

Referenced by CmsShowEDI::runFilter(), and CmsShowEDI::runSelection().

                                 {
      return m_what;
   }

Member Data Documentation

Definition at line 56 of file FWExpressionException.h.

Referenced by column().

std::string FWExpressionException::m_what [private]

Definition at line 55 of file FWExpressionException.h.

Referenced by what().