X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=src%2Fexceptions.h;h=4f18f70d97c0ec38db9da8e6ab5bd14204393f44;hb=8f49358153637bb87f492e558a13cf9f23046e64;hp=6bf832828a58bdc301f96f1197851a8021f91694;hpb=cd1d625ab21e741e91be7d2190bb4fd59fab3200;p=dragonfireclient.git diff --git a/src/exceptions.h b/src/exceptions.h index 6bf832828..4f18f70d9 100644 --- a/src/exceptions.h +++ b/src/exceptions.h @@ -125,6 +125,12 @@ class PrngException : public BaseException { PrngException(std::string s): BaseException(s) {} }; +class ModError : public BaseException { +public: + ModError(const std::string &s): BaseException(s) {} +}; + + /* Some "old-style" interrupts: */