00001 #pragma once 00002 00003 #include <stdexcept> 00004 00005 namespace FDR 00006 { 00010 class Error : public std::runtime_error 00011 { 00012 public: 00014 Error(const std::string& description); 00015 }; 00016 00017 } // end FDR