Yingdi Yu | 38e329b | 2013-10-10 22:11:35 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */ |
2 | /* | ||||
3 | * Copyright (c) 2013, Regents of the University of California | ||||
4 | * Yingdi Yu | ||||
5 | * | ||||
6 | * BSD license, See the LICENSE file for more information | ||||
7 | * | ||||
8 | * Author: Yingdi Yu <yingdi@cs.ucla.edu> | ||||
9 | */ | ||||
10 | |||||
11 | #include "exception.h" | ||||
12 | |||||
13 | using namespace std; | ||||
14 | |||||
15 | LnException::LnException(const string & errMsg) throw() | ||||
16 | : m_errMsg(errMsg) | ||||
17 | {} |