15 lines
174 B
C++
15 lines
174 B
C++
|
#pragma once
|
||
|
|
||
|
#include "utils/exceptions/basic_exception.hpp"
|
||
|
|
||
|
namespace bolt
|
||
|
{
|
||
|
|
||
|
class StreamError : BasicException
|
||
|
{
|
||
|
public:
|
||
|
using BasicException::BasicException;
|
||
|
};
|
||
|
|
||
|
}
|