Jeff Thompson | c057343 | 2013-09-19 17:41:36 -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 "security-exception.hpp" |
| 10 | using namespace std; |
| 11 | |
| 12 | namespace ndn { |
| 13 | |
| 14 | SecurityException::SecurityException(const string& errorMessage) throw() |
| 15 | : errorMessage_(errorMessage) |
| 16 | { |
| 17 | } |
| 18 | |
| 19 | SecurityException::~SecurityException() throw() |
| 20 | { |
| 21 | } |
| 22 | |
| 23 | } |