Jeff Thompson | a92861a | 2013-10-16 14:06:23 -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 | * @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 | |
| 11 | using namespace std; |
| 12 | |
| 13 | namespace ndn { |
| 14 | |
| 15 | namespace der |
| 16 | { |
| 17 | |
| 18 | DerException::DerException(const string& errorMessage) throw() |
| 19 | : errorMessage_(errorMessage) |
| 20 | { |
| 21 | } |
| 22 | |
| 23 | DerException::~DerException() throw() |
| 24 | { |
| 25 | } |
| 26 | |
| 27 | } // der |
| 28 | |
| 29 | } |