Aktualizr
C++ SOTA Client
src
libaktualizr
storage
storage_exception.h
1
#ifndef STORAGE_EXCEPTION_H_
2
#define STORAGE_EXCEPTION_H_
3
4
class
StorageException
:
public
std::runtime_error {
5
public
:
6
StorageException
(
const
std::string& what) : std::runtime_error(what) {}
7
~
StorageException
() noexcept
override
=
default
;
8
};
9
10
#endif // STORAGE_EXCEPTION_H_
StorageException
Definition:
storage_exception.h:4
Generated by
1.8.17