blob: 84ab5c1dbaa5922d3f2418cbda31ad740b8d8c45 [file] [log] [blame]
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
/**
* Copyright (C) 2013 Regents of the University of California.
* @author: Yingdi Yu <yingdi@cs.ucla.edu>
* @author: Jeff Thompson <jefft0@remap.ucla.edu>
* See COPYING for copyright and distribution information.
*/
#include "der-exception.hpp"
using namespace std;
namespace ndn {
namespace der
{
DerException::DerException(const string& errorMessage) throw()
: errorMessage_(errorMessage)
{
}
DerException::~DerException() throw()
{
}
} // der
}