1
0
mirror of https://github.com/luanti-org/minetestmapper.git synced 2025-10-05 21:35:22 +02:00

Inherit custom exceptions from std::exception

This commit is contained in:
sfan5
2022-02-08 23:39:03 +01:00
parent 8e9805c3ff
commit 2e353312b5
2 changed files with 10 additions and 14 deletions

View File

@@ -1,13 +1,12 @@
#pragma once
#include <cstdlib>
#include <string>
#include <exception>
#include "types.h"
class ZstdDecompressor
{
public:
class DecompressError {};
class DecompressError : std::exception {};
ZstdDecompressor();
~ZstdDecompressor();