blob: 84ab5c1dbaa5922d3f2418cbda31ad740b8d8c45 [file] [log] [blame]
Jeff Thompsona92861a2013-10-16 14:06:23 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
2/**
3 * Copyright (C) 2013 Regents of the University of California.
4 * @author: Yingdi Yu <yingdi@cs.ucla.edu>
5 * @author: Jeff Thompson <jefft0@remap.ucla.edu>
6 * See COPYING for copyright and distribution information.
7 */
8
9#include "der-exception.hpp"
10
11using namespace std;
12
13namespace ndn {
14
15namespace der
16{
17
18DerException::DerException(const string& errorMessage) throw()
19 : errorMessage_(errorMessage)
20{
21}
22
23DerException::~DerException() throw()
24{
25}
26
27} // der
28
29}