]> git.ipfire.org Git - thirdparty/pdns.git/blame - pdns/pdnsexception.hh
Merge pull request #14021 from Habbie/auth-lua-join-whitespace
[thirdparty/pdns.git] / pdns / pdnsexception.hh
CommitLineData
12c86877 1/*
12471842
PL
2 * This file is part of PowerDNS or dnsdist.
3 * Copyright -- PowerDNS.COM B.V. and its contributors
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of version 2 of the GNU General Public License as
7 * published by the Free Software Foundation.
8 *
9 * In addition, for the avoidance of any doubt, permission is granted to
10 * link this program with OpenSSL and to (re)distribute the binaries
11 * produced as the result of such linking.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 */
e8c59f2d 22#pragma once
12c86877
BH
23#include<string>
24
10f4eea8 25#include "namespaces.hh"
12c86877
BH
26
27//! Generic Exception thrown
3f81d239 28class PDNSException
12c86877
BH
29{
30public:
8a70e507 31 PDNSException() : reason("Unspecified") {};
d78d76c3 32 PDNSException(const string& r) : reason(r) {};
12c86877
BH
33
34 string reason; //! Print this to tell the user what went wrong
35};
36
3f81d239 37class TimeoutException : public PDNSException
c7c7edb5
IM
38{
39public:
40 TimeoutException() : PDNSException() {}
d78d76c3 41 TimeoutException(const string& r) : PDNSException(r) {}
c7c7edb5 42};