This is Unofficial EPICS BASE Doxygen Site
epics::pvData::detail::ExceptionMixed< E > Class Template Reference

#include "epicsException.h"

+ Inheritance diagram for epics::pvData::detail::ExceptionMixed< E >:
+ Collaboration diagram for epics::pvData::detail::ExceptionMixed< E >:

Public Member Functions

 ExceptionMixed (const E &self, const char *file, int line)
 
 ExceptionMixed (const char *file, int line)
 
template<typename A1 >
 ExceptionMixed (A1 arg1, const char *file, int line)
 
template<typename A1 , typename A2 >
 ExceptionMixed (A1 arg1, A2 arg2, const char *file, int line)
 
- Public Member Functions inherited from epics::pvData::ExceptionMixin
 ExceptionMixin (const char *file, int line)
 
void print (FILE *fp=stderr) const
 
std::string show () const
 

Detailed Description

template<typename E>
class epics::pvData::detail::ExceptionMixed< E >

Definition at line 111 of file epicsException.h.

Constructor & Destructor Documentation

template<typename E>
epics::pvData::detail::ExceptionMixed< E >::ExceptionMixed ( const E &  self,
const char *  file,
int  line 
)
inline

Definition at line 114 of file epicsException.h.

115  :E(self), ExceptionMixin(file,line)
116  {}
ExceptionMixin(const char *file, int line)
char * line
Definition: reader.c:25
template<typename E>
epics::pvData::detail::ExceptionMixed< E >::ExceptionMixed ( const char *  file,
int  line 
)
inline

Definition at line 118 of file epicsException.h.

119  :E(), ExceptionMixin(file,line)
120  {}
ExceptionMixin(const char *file, int line)
char * line
Definition: reader.c:25
template<typename E>
template<typename A1 >
epics::pvData::detail::ExceptionMixed< E >::ExceptionMixed ( A1  arg1,
const char *  file,
int  line 
)
inline

Definition at line 123 of file epicsException.h.

124  :E(arg1), ExceptionMixin(file,line)
125  {}
ExceptionMixin(const char *file, int line)
char * line
Definition: reader.c:25
template<typename E>
template<typename A1 , typename A2 >
epics::pvData::detail::ExceptionMixed< E >::ExceptionMixed ( A1  arg1,
A2  arg2,
const char *  file,
int  line 
)
inline

Definition at line 128 of file epicsException.h.

129  :E(arg1,arg2), ExceptionMixin(file,line)
130  {}
ExceptionMixin(const char *file, int line)
char * line
Definition: reader.c:25

The documentation for this class was generated from the following file: