#pragma once
#include "System/SystemException.h"

namespace DotNetDupe {
    namespace System {

        class OverflowException : public SystemException {
        public:
            OverflowException(const String& sMessage) : SystemException(sMessage) {}
        };

    }
}

Generated by OpenCppCoverage (Version: 0.9.9.0)