The Gaudi Framework  master (01b473db)
Gaudi::Parsers::PropertyValueException Class Reference

#include </builds/gaudi/Gaudi/GaudiCoreSvc/src/JobOptionsSvc/PropertyValue.h>

Inheritance diagram for Gaudi::Parsers::PropertyValueException:
Collaboration diagram for Gaudi::Parsers::PropertyValueException:

Public Member Functions

 PropertyValueException (const std::string &message)
 

Static Public Member Functions

static PropertyValueException WrongLValue ()
 
static PropertyValueException WrongRValue ()
 

Detailed Description

Definition at line 63 of file PropertyValue.h.

Constructor & Destructor Documentation

◆ PropertyValueException()

Gaudi::Parsers::PropertyValueException::PropertyValueException ( const std::string &  message)
inline

Definition at line 65 of file PropertyValue.h.

65 : std::runtime_error( message ) {}

Member Function Documentation

◆ WrongLValue()

static PropertyValueException Gaudi::Parsers::PropertyValueException::WrongLValue ( )
inlinestatic

Definition at line 66 of file PropertyValue.h.

66  {
67  return PropertyValueException( "Cannot apply +=/-= operation to left value." );
68  }

◆ WrongRValue()

static PropertyValueException Gaudi::Parsers::PropertyValueException::WrongRValue ( )
inlinestatic

Definition at line 70 of file PropertyValue.h.

70  {
71  return PropertyValueException( "Cannot apply +=/-= operation to right value." );
72  }

The documentation for this class was generated from the following file:
precedence.message
message
Definition: precedence.py:19
Gaudi::Parsers::PropertyValueException::PropertyValueException
PropertyValueException(const std::string &message)
Definition: PropertyValue.h:65