blob: 22f89a1f550c3ecaebc8cc1d4d0cb0e00ba1bdc8 [file] [log] [blame]
Yingdi Yu38e329b2013-10-10 22:11:35 -07001/* -*- 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
13using namespace std;
14
15LnException::LnException(const string & errMsg) throw()
16 : m_errMsg(errMsg)
17{}