summaryrefslogtreecommitdiffstats
path: root/logd/src/logd/errhandle.h
blob: 001ca0c921454dbf9e8dd7be57ce6f3b7ab33ea2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#pragma once
#include <stdexcept>
#include <vespa/vespalib/stllike/string.h>

namespace logdemon {

class MsgException : public std::exception {
private:
    vespalib::string _string;
public:
    MsgException(const char *s) : _string(s) {}
    virtual ~MsgException() throw() {}
    const char *what() const throw() override { return _string.c_str(); }
};

class ConnectionException : public MsgException
{
public:
    ConnectionException(const char *s) : MsgException(s) {}
};

class SigTermException : public MsgException
{
public:
    SigTermException(const char *s) : MsgException(s) {}
};

class SomethingBad : public MsgException
{
public:
    SomethingBad(const char *s) : MsgException(s) {}
};

} // namespace