Vector BLF
Exceptions.h
1 // SPDX-FileCopyrightText: 2013-2021 Tobias Lorenz <tobias.lorenz@gmx.net>
2 //
3 // SPDX-License-Identifier: GPL-3.0-or-later
4 
5 #pragma once
6 
7 #include <Vector/BLF/platform.h>
8 
9 #include <stdexcept>
10 
11 #include <Vector/BLF/vector_blf_export.h>
12 
13 namespace Vector {
14 namespace BLF {
15 
19 class VECTOR_BLF_EXPORT Exception : public std::runtime_error {
20  public:
26  explicit Exception(const char * arg) :
27  std::runtime_error(arg) {
28  }
29 };
30 
31 }
32 }
Definition: Exceptions.h:19
Exception(const char *arg)
Definition: Exceptions.h:26