aboutsummaryrefslogtreecommitdiffstats
path: root/logd/src/logd/exceptions.h
blob: a531574c630a9db1dd54270c1acb8168ba458b01 (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
36
37
38
39
40
41
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#pragma once

#include <stdexcept>
#include <string>

namespace logdemon {

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

class ConnectionException : public MsgException
{
public:
    ConnectionException(const std::string& msg) : MsgException(msg) {}
};

class DecodeException : public MsgException {
public:
    DecodeException(const std::string& msg) : MsgException(msg) {}
};

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

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

}