You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Classe d'Exception heritee de std::exception. Levee quand on rencontre une exception standard. On utilisera plus souvent des classes d'exception heritees
* de CalculatriceException
*/
class CalculatriceException : public std::exception
{
protected:
QString info;
LogSystem* mLogSys;
public:
CalculatriceException(const QString& s = "") throw();