diff --git a/vcg/complex/exception.h b/vcg/complex/exception.h index b77d9e02..9d623903 100644 --- a/vcg/complex/exception.h +++ b/vcg/complex/exception.h @@ -29,7 +29,10 @@ namespace vcg class MissingComponentException : public std::runtime_error { public: - MissingComponentException(const std::string &err):std::runtime_error(err) { std::cout << "Missing Component Exception -" << err << "- \n";} + MissingComponentException(const std::string &err):std::runtime_error(err) + { + std::cout << "Missing Component Exception -" << err << "- \n"; + } virtual const char *what() const throw () { static char buf[128]="Missing Component";