LINEAR++ library: AFF to LAPACK

◆ LapackException()

linear::LapackException::LapackException ( const char *  message,
const char *  subroutine,
const char *  file,
const int &  line,
const char *  condition,
const int &  value 
)

take number of requested elements and their size

instantiate LapackException

Definition at line 124 of file error.cc.

129  :
130  Exception("ERROR: return value of LAPACK subroutine!",
131  file,line,condition), Mvalue(value), Msubroutine(subroutine),
132  Mmeaning(message) { }
const char * Mmeaning
Definition: error.h:137
int value() const
return INFO value
Definition: error.h:130
Exception()
Creates exception with no explaning comments.
Definition: error.cc:49
int Mvalue
members to remember
Definition: error.h:135
const char * subroutine() const
return name of LAPACK subroutine
Definition: error.h:132
const char * Msubroutine
Definition: error.h:136