ExceptionsCommon.h 370 B

12345678910111213141516
  1. /*
  2. * ExceptionsCommon.h, part of VCMI engine
  3. *
  4. * Authors: listed in file AUTHORS in main folder
  5. *
  6. * License: GNU General Public License v2.0 or later
  7. * Full text of license available in license.txt file, in main folder
  8. *
  9. */
  10. #pragma once
  11. class DLL_LINKAGE DataLoadingException: public std::runtime_error
  12. {
  13. public:
  14. using std::runtime_error::runtime_error;
  15. };