blob: b4bbd222c4e68d08b651a28cec550d1fa03e5cfc [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
9#include "security-exception.hpp"
10using 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}