blob: b4acfad441ab4dcd814fb57d03f6af773b8f0912 [file] [log] [blame]
Jeff Thompsonc0573432013-09-19 17:41:36 -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
Jeff Thompson25b4e612013-10-10 16:03:24 -07009#include <ndn-cpp/security/security-exception.hpp>
Jeff Thompsonc0573432013-09-19 17:41:36 -070010using namespace std;
11
12namespace ndn {
13
14SecurityException::SecurityException(const string& errorMessage) throw()
15: errorMessage_(errorMessage)
16{
17}
18
19SecurityException::~SecurityException() throw()
20{
21}
22
23}