Limo
A simple mod manager
Loading...
Searching...
No Matches
compressionerror.h
Go to the documentation of this file.
1
5#pragma once
6
7
11#include <stdexcept>
12class CompressionError : public std::runtime_error
13{
14public:
19 CompressionError(const char* message) : std::runtime_error(message){};
24 const char* what() const throw() { return std::runtime_error::what(); };
25};
CompressionError(const char *message)
Constructor accepts an error message.
Definition compressionerror.h:19
const char * what() const
Returns the message of this exception.
Definition compressionerror.h:24