CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
FWExpressionException Class Reference

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

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 28 of file FWExpressionException.h.

Constructor & Destructor Documentation

◆ FWExpressionException()

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

Definition at line 30 of file FWExpressionException.h.

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

Member Function Documentation

◆ column()

long FWExpressionException::column ( ) const
inline

Definition at line 36 of file FWExpressionException.h.

36 { return m_column; }

References m_column.

◆ what()

const std::string& FWExpressionException::what ( ) const
inline

Definition at line 34 of file FWExpressionException.h.

34 { return m_what; }

References m_what.

Member Data Documentation

◆ m_column

long FWExpressionException::m_column
private

Definition at line 48 of file FWExpressionException.h.

Referenced by column().

◆ m_what

std::string FWExpressionException::m_what
private

Definition at line 47 of file FWExpressionException.h.

Referenced by what().

FWExpressionException::m_what
std::string m_what
Definition: FWExpressionException.h:47
FWExpressionException::m_column
long m_column
Definition: FWExpressionException.h:48