summaryrefslogtreecommitdiff
path: root/Skin++/src/Cle2000Exception.cxx
blob: 216825fe132b45988df247169b584b6de6251d0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22

/*****************************************/
/*      EXCEPTION CLASS FOR Lifo         */
/*    AUTHOR: A. HEBERT ; 2012/10/07     */
/*****************************************/

/*
Copyright (C) 2012 Ecole Polytechnique de Montreal

This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
*/

#include "Cle2000Exception.hxx"
using namespace std;
using namespace ganlib;

ganlib::Cle2000Exception::Cle2000Exception(const string& msg) : runtime_error(msg) {
  cout << "A Cle2000Exception was thrown with message: " << msg << endl;
}